createTable('tickets', [ 'id' => $this->primaryKey(), 'user_id' => $this->integer(), 'site_id' => $this->smallInteger(), 'ip' => $this->string(15), 'subject_id' => $this->smallInteger(2), 'text' => $this->text(), 'status' => $this->smallInteger(1), 'tm_create' => $this->dateTime(), 'tm_read' => $this->dateTime(), 'tm_close' => $this->dateTime(), 'tm_reopen' => $this->dateTime(), ]); } /** * @inheritdoc */ public function down() { $this->dropTable('tickets'); } }