d13e170f22
V2 (Laravel re-make)
37 lines
766 B
PHP
37 lines
766 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class CreateLabelsTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('labels', function (Blueprint $table) {
|
|
$table->char('id', 8)->primary()->default(null);
|
|
<<<<<<< HEAD
|
|
$table->string('label');
|
|
=======
|
|
$table->string('label')->unique();
|
|
>>>>>>> 972edfc66e6862c09c39b21902d4856409aa6157
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('labels');
|
|
}
|
|
}
|