12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- use Illuminate\Database\Migrations\Migration;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Support\Facades\Schema;
- class CreateSettingsTable extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::create('settings', function (Blueprint $table) {
- $table->id();
- //$table->bigIncrements('id');
- $table->string('title')->comment('标题');
- $table->string('key')->comment('关键字');
- $table->string('value')->comment('值');
- $table->string('desc')->comment('描述');
- $table->string('is_delete')->comment('是否删除');
- $table->timestamps();
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::dropIfExists('settings');
- }
- }
|