Laravel Artisan迁移不创建表

时间:2015-01-28 22:38:57

标签: php mysql laravel laravel-4 artisan

我已按照教程(here)来设置我的应用。然后我尝试复制步骤来创建更多表,所以我在终端中运行了一些命令,如:

php artisan migrate:make create_generalUserInfo_table

然后在create_generalUserInfo_table文件中我添加了:

<?php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateGeneralUserInfoTable extends Migration {

    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('generalUserInfo', function($table){
            $table->increments('id');
            $table->integer('user_id');
            $table->string('firstname', 100);
            $table->string('lastname', 100);
            $table->timestamps();
            $table->softDeletes();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop('generalUserInfo');
    }

}

然后回到终端我跑了:

php artisan migrate:refresh

它正在添加移民但是这些表没有在mysql中创建。创建了初始教程中的Users表

Migrated: 2015_01_28_055418_create_users_table
Migrated: 2015_01_28_213951_create_imprints_table
Migrated: 2015_01_28_214023_create_generalUserInfo_table
Migrated: 2015_01_28_214103_create_roles_table
Migrated: 2015_01_28_214114_create_role_user_table
Migrated: 2015_01_28_214146_create_comments_table
Migrated: 2015_01_28_214159_create_books_table

1 个答案:

答案 0 :(得分:3)

尝试更改此行:

Schema::create('generalUserInfo', function($table){

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

并像这样运行迁移命令:

php artisan migrate

你还应该确保

  • 您的迁移表没有将这些表插入为已迁移
  • 您的数据库凭据正确并指向正确的数据库
相关问题