标签:
1) php artisan migrate:make action_table_name
2)
public function up()
{
Schema::create(‘up_appinfos‘, function(Blueprint $table) {
$table->string(‘bid‘, 100)->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table(‘up_appinfos‘, function(Blueprint $table)
{
$table->dropColumn(‘bid‘);
});
}
标签:
原文地址:http://www.cnblogs.com/arke/p/4523012.html