使用命令php artisan migrate:make webLinks --table webLinks
我可以创建一个迁移文件,下面是生成的输出。
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class WebLinks extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('webLinks', function(Blueprint $table)
{
$table->increments('id');
$table->string('weblink');
$table->string('verifyCode');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('webLinks', function(Blueprint $table)
{
//
});
}
}
现在我无法使用Up for create table with fields: 命令:
php artisan migrate
结果:
array(4) {
[0]=>
string(81) "select * from information_schema.tables where table_schema = ? and table_name = ?"
[1]=>
array(2) {
[0]=>
string(3) "ads"
[1]=>
string(10) "migrations"
}
[2]=>
float(0.44)
[3]=>
string(5) "mysql"
}
答案 0 :(得分:0)
如何使用Jeffrey Way的这个小帮手? https://github.com/JeffreyWay/Laravel-4-Generators
这可能会有所帮助。