「Php/fuelphp/migration/table」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→Migrationを作成) |
(→Migrationを作成) |
||
行16: | 行16: | ||
'password' => array('constraint' => 31, 'type' => 'varchar'), | 'password' => array('constraint' => 31, 'type' => 'varchar'), | ||
'msg' => array('type' => 'text'), | 'msg' => array('type' => 'text'), | ||
− | |||
), array('id')); | ), array('id')); | ||
} | } | ||
− | |||
public function down() | public function down() | ||
{ | { |
2015年10月25日 (日) 00:46時点における版
Migrationを作成
- プロジェクトトップに移動して以下コマンド実行
php oil generate migration create_users name:varchar[31] email:string[63] password:string[31] msg:text
- 以下が作成されたことを確認
fuel/app/migrations/001_create_users.php
namespace Fuel\Migrations; class Create_users { public function up() { \DBUtil::create_table('users', array( 'id' => array('constraint' => 11, 'type' => 'int', 'auto_increment' => true, 'unsigned' => true), 'name' => array('constraint' => 31, 'type' => 'varchar'), 'email' => array('constraint' => 63, 'type' => 'varchar'), 'password' => array('constraint' => 31, 'type' => 'varchar'), 'msg' => array('type' => 'text'), ), array('id')); } public function down() { \DBUtil::drop_table('users'); } }
Migrationを使ってテーブル作成
- fuel/app/config/db.phpの設定をする
- 以下コマンド実行
php oil refine migrate
以下テーブルができる
CREATE TABLE `tests` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `email` varchar(50) NOT NULL, `password` varchar(125) NOT NULL, `created_at` int(11) NOT NULL, `updated_at` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8
処理を戻す
php oil refine migrate:down
戻した処理を進める
php oil refine migrate:up
バージョンを指定して処理
php oil refine migrate --version=10
カラム追加サンプル
php oil g migration add_bio_to_tests bio:text php oil r migrate