createTable('{{%template}}', [ 'id' => $this->primaryKey(), 'title' => $this->string(), 'created_at' => $this->dateTime(), 'updated_at' => $this->dateTime() ]); } /** * {@inheritdoc} */ public function safeDown() { $this->dropTable('{{%template}}'); } }