createTable('plati_codes', [ 'id' => $this->primaryKey(), 'code' => $this->string(), 'checks' => $this->smallInteger(), 'user_id' => $this->integer()->defaultValue(null), 'tm_create' => $this->timestamp()->defaultExpression('NOW()'), 'tm_used' => $this->timestamp(), ]); } /** * @inheritdoc */ public function down() { $this->dropTable('plati_codes'); } }