id(); $table->string('name'); $table->string('picture'); $table->unsignedBigInteger('place_id')->nullable()->comment('位置'); $table->timestamp('published_at')->nullable()->comment('发布时间'); $table->unsignedTinyInteger('is_enable')->default(1)->comment('显示开关'); $table->unsignedInteger('sort')->default(0)->comment('排序'); $table->text('link_config')->nullable()->comment('跳转配置'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('banners'); } };