Laravel迁移按预期创建迁移表而不是用户

时间:2014-02-24 17:44:45

标签: php laravel laravel-4 migration

我在全新的Laravel项目中创建了以下迁移:

<?php

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

class CreateUsersTable extends Migration {

    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::table('users', function(Blueprint $table)
        {
            $table->increments('id');

            $table->string('name', 255);
            $table->string('email', 255);
            $table->integer('user_level');

            $table->timestamps();
        });
    }

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

}

我原以为它会创建一个带有姓名,电子邮件等的users表,但我最终得到的是migration表。我做错了什么?

1 个答案:

答案 0 :(得分:1)

试试这个

Schema::create('users', function(Blueprint $table){
        table->increments('id');
        $table->string('name', 255);
        $table->string('email', 255);
        $table->integer('user_level');
        $table->timestamps();
});

laravel使用migration表来跟踪您已完成的迁移和回滚。