my-idlers/database/migrations/2022_02_03_035702_create_labels_table.php
cp6 da83aa1f23 Fix
Fix
2022-03-06 02:58:25 +11:00

33 lines
659 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);
$table->string('label')->unique();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('labels');
}
}