bigIncrements('id'); $table->string('name')->comment('名称'); $table->text('image')->comment('默认图片'); $table->text('image_at')->comment('点击后的图片'); $table->string('url')->comment('链接'); $table->integer('status')->comment('状态 0.禁用 1.启用')->nullable(false)->unsigned(); $table->dateTime('created_at')->comment('创建时间'); $table->dateTime('updated_at')->comment('更新时间'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('menubar'); } }