当前位置:首页 > CMS教程 > 其它CMS > 列表

Laravel 创建指定表 migrate的例子

发布:smiling 来源: PHP粉丝网  添加日期:2021-12-28 10:50:19 浏览: 评论:0 

今天小编就为大家分享一篇Laravel 创建指定表 migrate的例子,具有很好的参考价值,希望对大家有所帮助,一起跟随小编过来看看吧

网上找了很多资料,都很坑爹,说是要把之前的表都给删掉,然后重新运行,有的说要指定database的文件路径,都不管用。

php artisan migrate:reset

php artisan migrate

这样的话我之前的数据不都是白搞的了??

这样肯定不行的啊,我就自己摸索,然后发现其实可以直接创建指定的表,运行thinker,然后运行up方法即可!示例代码如下:

这个需要设置composer.json里面的自动加载,需要加载database/migrations这个文件夹下面的文件:

  1. .... 
  2.   "autoload": { 
  3.     "classmap": [ 
  4.       "database/seeds"
  5.       "database/migrations"
  6.       "database/factories" 
  7.     ], 
  8.     .... 
  9.  
  10. PS D:\phpStudy\WWW\BCCAdminV1.0> php artisan tinker 
  11. Psy Shell v0.7.2 (PHP 7.1.9 — cli) by Justin Hileman 
  12. >>> (new CreateAccessLogsTable)->up(); 
  13. => null 
  14. >>> 

运行出来个null,我还想着估计完蛋了,但是i还是去数据库看了一眼,你猜怎么着,还真的成功了!

  1. public function up() { 
  2.   // Schema::dropIfExists('users'); 
  3.   Schema::create('access_logs'function (Blueprint $table) { 
  4.     $table->increments('id'); 
  5.     $table->string('ip')->default('0')->comment('ip地址'); 
  6.     $table->integer('customer_id')->default('0')->comment('用户ID'); 
  7.     $table->string('refer_website')->default('')->comment('来源网站'); 
  8.     $table->string('broswer')->default('')->comment('客户端浏览器'); 
  9.     $table->string('operating_system')->default('')->comment('客户端操作系统'); 
  10.     $table->string('resolution')->default('')->comment('客户端分辨率'); 
  11.     $table->string('visited_page')->default('')->comment('被访问的页面'); 
  12.     $table->timestamp('created_at'); 
  13.     $table->timestamp('left_at'); 
  14.   }); 
  15. }

Tags: Laravel创建指定表 migrate

分享到: