时间:2021-07-01 10:21:17 帮助过:45人阅读
php artisan make:migration create_comments_table编辑表字段
engine = 'InnoDB'; $table->increments('id'); $table->integer('news_id'); $table->string('author_name'); $table->string('author_url'); $table->string('author_key'); $table->string('ip'); $table->string('message'); $table->string('mail'); $table->integer('create_time'); $table->integer('parent_id'); }); } /** * Reverse the migrations. * * @return void */ public function down() { // }}创建表
php artisan migrate