createTable('ticket_replies', [ 'id' => $this->primaryKey(), 'subject_id' => $this->smallInteger(), 'text' => $this->text() ]); } /** * @inheritdoc */ public function down() { $this->dropTable('ticket_replies'); } }