Add controller and table for marking

This commit is contained in:
Too
2018-06-20 00:38:32 +08:00
parent 95f4f25dd3
commit 3f2d9fbfb8
6 changed files with 141 additions and 19 deletions
@@ -0,0 +1,33 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateMarkingTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('markings', function (Blueprint $table) {
$table->increments('id');
$table->string('email')->unique();
$table->string('marking')->unique();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('marking');
}
}