increments('id'); $table->unsignedInteger('store_id'); $table->string('title',100)->comment('标题'); $table->unsignedInteger('sort')->comment('排序'); $table->unsignedInteger('is_delete')->default(0)->comment('Is_delete'); $table->longText('content')->comment('内容'); $table->integer('addtime')->comment('添加时间'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('album_information'); } }