码迷,mamicode.com
首页 > 数据库 > 详细

laravel数据库迁移的migrate小解

时间:2014-10-17 15:09:40      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:io   ar   数据   art   on   数据库   php   table   函数   

当通过命令行:php artisan migrate:make create_authors_table --table=authors --create时,在 migration.php 中若Schema::table()而不是Schema::create时,会出现 table 不存在的指示,这时需要将 Schema::table 改为 Schema::create 。

有时输入:php artisan migrate 会显示其他表已存在导致无法创建新的表,这时可以将旧的 migration.php 中的 up 函数中的 Schema::create 改为 Schema::table 即可。

laravel数据库迁移的migrate小解

标签:io   ar   数据   art   on   数据库   php   table   函数   

原文地址:http://www.cnblogs.com/linguoguo/p/4031150.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!