我正在尝试学习 Laravel。我正在关注快速入门文档,但遇到了迁移问题。我在这一步: http: //laravel.com/docs/quick#creating-a-migration
当我运行 commandphp artisan migrate
时,命令行显示以下内容:
c:\wamp\www\laravel>php artisan migrate
Migration table created successfully.
Migrated: 2013_09_21_040037_create_users_table
在数据库中,我看到一个migrations
使用 1 条记录创建的表。但是,我没有看到一张users
桌子。所以,我不能继续本教程的 ORM 部分。
有什么想法我可能做错了吗?为什么没有users
创建表?
编辑 1(原始迁移文件):
<?php
use Illuminate\Database\Migrations\Migration;
class CreateUsersTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('users', function($table)
{
$table->increments('id');
$table->string('email')->unique();
$table->string('name');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('users');
}
}