84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
比如有这样一个文件2016_06_21_200145_create_notes_table.php,修改内容后我如果手动重命名修改200145这个数字再执行php artisan migrate是生效的,但我不知道这样规不规范。
2016_06_21_200145_create_notes_table.php
200145
php artisan migrate
闭关修行中......
每次执行php artisan migrate时都会把执行migrate文件记录到数据库中的 migrations 表中,你改变文件名称就相当于重新建立了一个文件了。
如果创建表以后想再修改表可以通过 2016_06_21_222145_update_notes_table.php 文件去更改表结构,多次修改表结构需要在table后加上前边年月日(即2016_06_21_232145_update_notes_table20160621.php)这样就可以进行多次更改表结构。
需要注意的是修改的日期和随机数要有先后顺序。
每次执行php artisan migrate时都会把执行migrate文件记录到数据库中的 migrations 表中,你改变文件名称就相当于重新建立了一个文件了。
如果创建表以后想再修改表可以通过 2016_06_21_222145_update_notes_table.php 文件去更改表结构,
多次修改表结构需要在table后加上前边年月日(即2016_06_21_232145_update_notes_table20160621.php)这样就可以进行多次更改表结构。
需要注意的是修改的日期和随机数要有先后顺序。