createTable('block', [ 'id' => $this->primaryKey(), 'phone' => $this->string(), 'ip' => $this->string(), 'ua' => $this->string(), 'tm' => $this->timestamp(), 'code' => $this->string(4), 'status' => $this->smallInteger(1)->defaultValue(0) ]); } /** * @inheritdoc */ public function down() { $this->dropTable('block'); } }