changed config table
This commit is contained in:
parent
b06128e819
commit
0f13e29fe9
|
@ -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",
|
||||
|
|
|
@ -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'],
|
||||
|
|
Loading…
Reference in New Issue