createTable('{{%language}}', [ 'language_id' => $this->primaryKey(), 'url' => $this->string() ->notNull(), 'local' => $this->string() ->notNull(), 'name' => $this->string() ->notNull(), 'default' => $this->boolean() ->notNull() ->defaultValue(false), 'date_create' => $this->integer() ->notNull(), 'date_update' => $this->integer() ->notNull(), ]); } public function down() { $this->dropTable('{{%language}}'); } }