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