increments('id'); $table->tinyInteger('type')->nullable()->comment('类型:1公告;2活动;3视频;4文章'); $table->string('title', 200)->nullable()->comment('标题'); $table->text('content')->nullable()->comment('内容'); $table->unsignedInteger('sort')->nullable()->default(0)->comment('排序'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('contents'); } }