createTable('{{%fields}}', [ 'id' => $this->primaryKey(), 'table_name' => $this->string(255)->notNull(), 'table_id' => $this->integer(), 'value' => $this->string(255), 'field_name' => $this->string(), 'field_type' => $this->string(32)->notNull(), 'language' => $this->string(3), 'key' => $this->integer(), 'parent_key' => $this->integer() ], $tableOptions); } public function down() { $this->dropTable('{{%fields}}'); } }