| 123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- use Illuminate\Database\Migrations\Migration;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Support\Facades\Schema;
- class CreateRelationsTable extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::create('relations', function (Blueprint $table) {
- $table->uuid('id')->primary()->default(DB::raw('uuid_generate_v1mc()'));
- $table->string('name',256)->index();
- $table->string('case',16)->nullable()->index();
- $table->json('to')->nullable();
- $table->uuid('editor_id');
- $table->timestamps();
- $table->unique(["name", "case"]);
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::dropIfExists('relations');
- }
- }
|