123456789101112131415161718192021222324252627282930 |
- <?php
-
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Support\Facades\Schema;
- use Statamic\Eloquent\Database\BaseMigration as Migration;
-
- return new class extends Migration
- {
- public function up()
- {
- Schema::create($this->prefix('taxonomies'), function (Blueprint $table) {
- $table->id();
- $table->string('handle')->unique();
- $table->string('title');
- $table->jsonb('sites')->nullable();
- $table->jsonb('settings')->nullable();
- $table->timestamps();
- });
- }
-
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::dropIfExists($this->prefix('taxonomies'));
- }
- };
|