美文网首页
2020-03-19

2020-03-19

作者: 迷途小书虫88 | 来源:发表于2020-03-19 21:03 被阅读0次

php artisan make:migration 表名

 php artisan make migrate 创建

Schema::create('posts',function (Blueprint $table) {

$table->increments('id');

$table->string('title',100)->default("");

$table->text("content");

$table->integer("userid");

$table->timestamps();

});

php artisan migrate  执行 schema

相关文章

网友评论

      本文标题:2020-03-19

      本文链接:https://www.haomeiwen.com/subject/vrdryhtx.html