increments('id'); $table->string('subject'); //公告主题 $table->string('url'); //公告链接地址 $table->tinyInteger('status')->default(1); //状态 $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('notices'); } }