facebook twitter hatena line email

「Php/fuelphp/migration/table」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==Migrationを作成== #プロジェクトトップに移動して以下コマンド実行 php oil generate migration create_tests name:text email:string[50] password:st...」)
 
(Migrationを作成)
行1: 行1:
 
==Migrationを作成==
 
==Migrationを作成==
 
#プロジェクトトップに移動して以下コマンド実行
 
#プロジェクトトップに移動して以下コマンド実行
  php oil generate migration create_tests name:text email:string[50] password:string[125]
+
  php oil generate migration create_users name:varchar[31] email:string[63] password:string[31] msg:text
 +
 
 
#以下が作成されたことを確認
 
#以下が作成されたことを確認
fuel/app/migrations/001_create_tests.php
+
fuel/app/migrations/001_create_users.php
 
  namespace Fuel\Migrations;
 
  namespace Fuel\Migrations;
  class Create_tests
+
  class Create_users
 
  {
 
  {
        public function up()
+
    public function up()
        {
+
    {
                \DBUtil::create_table('tests', array(
+
        \DBUtil::create_table('users', array(
                        'id' => array('constraint' => 11, 'type' => 'int', 'auto_increment' => true),
+
            'id' => array('constraint' => 11, 'type' => 'int', 'auto_increment' => true, 'unsigned' => true),
                        'name' => array('type' => 'text'),
+
            'name' => array('constraint' => 31, 'type' => 'varchar'),
                        'email' => array('constraint' => 50, 'type' => 'varchar'),
+
            'email' => array('constraint' => 63, 'type' => 'varchar'),
                        'password' => array('constraint' => 125, 'type' => 'varchar'),
+
            'password' => array('constraint' => 31, 'type' => 'varchar'),
                        'created_at' => array('constraint' => 11, 'type' => 'int'),
+
            'msg' => array('type' => 'text'),
                        'updated_at' => array('constraint' => 11, 'type' => 'int'),
+
 
                ), array('id'));
+
        ), array('id'));
        }
+
    }
        public function down()
+
 
        {
+
    public function down()
                \DBUtil::drop_table('tests');
+
    {
        }
+
        \DBUtil::drop_table('users');
 +
    }
 
  }
 
  }
  

2015年10月25日 (日) 00:45時点における版

Migrationを作成

  1. プロジェクトトップに移動して以下コマンド実行
php oil generate migration create_users name:varchar[31] email:string[63] password:string[31] msg:text
  1. 以下が作成されたことを確認

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を使ってテーブル作成

  1. fuel/app/config/db.phpの設定をする
  2. 以下コマンド実行
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

参考

http://d.hatena.ne.jp/Kenji_s/20111210/1323475862