diff --git a/config/Migrations/20240719000001_AdminPermissionSplit.php b/config/Migrations/20240719000001_AdminPermissionSplit.php deleted file mode 100644 index 170a0c5..0000000 --- a/config/Migrations/20240719000001_AdminPermissionSplit.php +++ /dev/null @@ -1,30 +0,0 @@ -table('roles')->hasColumn('perm_community_admin'); - if (!$exists) { - $this->table('roles') - ->addColumn('perm_community_admin', 'boolean', [ - 'default' => 0, - 'null' => false, - ]) - ->addIndex('perm_community_admin') - ->update(); - } - $builder = $this->getQueryBuilder(); - $builder - ->update('roles') - ->set('perm_community_admin', true) - ->where(['perm_admin' => true]) - ->execute(); - } -}