increments('id'); $table->string('user_id'); $table->string('pic')->default('')->comment('图片'); $table->integer('sort')->default(0)->comment('排序号'); $table->enum('status',['显示','显示'])->default('显示')->comment('轮播图状态'); $table->timestamps(); $table->index('user_id'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('card_banner'); } }