当前位置: 首页 > 工具软件 > phpmig > 使用案例 >

master php,phpmig-masterPHP迁移库

刘令
2023-12-01

phpmig-masterPHP迁移库

php artisan migrate #输出Migration table created successfully. Migrated: 2014_10_12_000000_create_users_table Migrated: 2014_10_12_100000_create_password_resets_table

php artisan migrate:rollback #输出Rolled back: 2014_10_12_100000_create_password_resets_table Rolled back: 2014_10_12_000000_create_users_table

php artisan make:migration create_article_table --create='articles' #输出Created Migration: 2015_03_28_050138_create_article_table

use Illuminate\Database\Schema\Blueprint;

use Illuminate\Database\Migrations\Migration;

class CreateArticleTable extends Migration {

/**

* Run the migrations.

*

* @return void

*/

public function up()

{

Schema::create('articles', function(Blueprint $table)

{

$table->increments('id');

$table->timestamps();

});

}

/**

* Reverse the migrations.

*

* @return void

*/

public function down()

{

Schema::drop('articles');

}

}

database migrations 是laravel最强大的功能之一。数据库迁移可以理解为数据库的版本控制器。

在 database/migrations 目录中包含两个迁移文件,一个建立用户表,一个用于用户密码重置。

在迁移文件中,up 方法用于创建数据表,down方法用于回滚,也就是删除数据表。

申明:php中文网下载站匠心打造专业的IT资源下载站!一切资源免费,来源网络收集,请自行检测软件的完整性。交流QQ群:916808767

 类似资料: