| 1234567891011121314151617181920212223242526272829303132333435 | <?phpuse yii\db\Schema;use yii\db\Migration;class m160721_151110_create_i18n_table extends Migration{    public function up()    {        $tableOptions = null;        if ($this->db->driverName === 'mysql') {            $tableOptions = 'CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci ENGINE=InnoDB';        }        $this->createTable('{{%i18n_source_message}}', [            'id'=>$this->primaryKey(),            'category'=>$this->string(32),            'message'=>$this->text()        ], $tableOptions);        $this->createTable('{{%i18n_message}}', [            'id'=>$this->integer(),            'language'=>$this->string(16),            'translation'=>$this->text()        ], $tableOptions);        $this->addPrimaryKey('i18n_message_pk', '{{%i18n_message}}', ['id', 'language']);    }    public function down()    {        $this->dropTable('{{%i18n_message}}');        $this->dropTable('{{%i18n_source_message}}');    }}
 |