123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- use Illuminate\Database\Migrations\Migration;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Support\Facades\Schema;
- class CreateAdminExtensionsTable extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::create('admin_extensions', function (Blueprint $table) {
- $table->increments('id')->unsigned();
- $table->string('name', 100)->unique();
- $table->string('version', 20)->default('');
- $table->tinyInteger('is_enabled')->default(0);
- $table->json('options')->nullable();
- $table->timestamps();
- $table->engine = 'InnoDB';
- });
- Schema::create('admin_extension_histories', function (Blueprint $table) {
- $table->bigIncrements('id')->unsigned();
- $table->string('name', 100);
- $table->tinyInteger('type')->default(1);
- $table->string('version', 20)->default(0);
- $table->text('detail')->nullable();
- $table->index('name');
- $table->timestamps();
- $table->engine = 'InnoDB';
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::dropIfExists('admin_extensions');
- Schema::dropIfExists('admin_extension_histories');
- }
- }
|