createTable('proxies', [ 'id' => $this->primaryKey(), 'host' => $this->string(), 'port' => $this->smallInteger(), ]); } /** * @inheritdoc */ public function down() { $this->dropTable('proxies'); } }