数据库表单预创建
1、生成php文件
php artisan make:migration create_articles_table
2、执行php文件操作数据库
php artisan migrate --force
回滚上一个
php artisan migrate:rollback
回滚初始状态
php artisan migrate:reset
$table->increments('id');
$table->string('openid',255)->default('')->comment('微信端返回的openid');
$table->string('nickname',45)->default('')->comment('顾问昵称,一般取自微信昵称');
php artisan make:migration create_articles_table
这一步创建的表单必须是复数形式
article->articles
否则会显示查不到该表单。。。。。