createTable('free', [ 'id' => $this->primaryKey(), 'user_id' => $this->integer(), 'checks' => $this->integer(), 'uuid' => $this->string(), 'type_id' => $this->smallInteger(), 'tm' => $this->timestamp() ]); } /** * @inheritdoc */ public function down() { $this->dropTable('free'); } }