createTable('ticket_comments', [ 'id' => $this->primaryKey(), 'ticket_id' => $this->integer(), 'user_id' => $this->integer(), 'text' => $this->text(), 'tm_create' => $this->timestamp(), 'tm_read' => $this->timestamp() ]); } /** * @inheritdoc */ public function down() { $this->dropTable('ticket_comments'); } }