123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- use Illuminate\Support\Facades\Schema;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Database\Migrations\Migration;
- class CreateAdminRolesTable extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::create('admin_roles', function (Blueprint $table) {
- $table->bigIncrements('id');
- $table->string('name')->comment('角色名');
- $table->string('description')->nullable()->comment('描述');
- $table->integer('order')->default(0)->comment('排序');
- $table->timestamps();
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::dropIfExists('admin_roles');
- }
- }
|