diff --git a/composer.json b/composer.json index 894f150..5efc416 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "24unix/bindapi", "description": "manage Bind9 DNS server via REST API", "version": "1.0.9", - "build_number": "362", + "build_number": "363", "authors": [ { "name": "Micha Espey", diff --git a/db/migrations/20240427114541_add_self_to_nameservers.php b/db/migrations/20240427114541_add_self_to_nameservers.php index 2713e85..6dd395b 100644 --- a/db/migrations/20240427114541_add_self_to_nameservers.php +++ b/db/migrations/20240427114541_add_self_to_nameservers.php @@ -6,17 +6,17 @@ class AddSelfToNameservers extends Phinx\Migration\AbstractMigration { public function change() { - $this->table('domains', [ - 'id' => false, - 'primary_key' => ['id'], - 'engine' => 'InnoDB', - 'encoding' => 'utf8mb4', - 'collation' => 'utf8mb4_unicode_ci', - 'comment' => '', - 'row_format' => 'DYNAMIC', - ]) - ->removeColumn('self') - ->save(); +// $this->table('domains', [ +// 'id' => false, +// 'primary_key' => ['id'], +// 'engine' => 'InnoDB', +// 'encoding' => 'utf8mb4', +// 'collation' => 'utf8mb4_unicode_ci', +// 'comment' => '', +// 'row_format' => 'DYNAMIC', +// ]) +// ->removeColumn('self') +// ->save(); $this->table('nameservers', [ 'id' => false, 'primary_key' => ['id'],