diff --git a/sql/postgres/patch-oathauth_users-drop-id-nextval.sql b/sql/postgres/patch-oathauth_users-drop-id-nextval.sql deleted file mode 100644 index 28b051f7..00000000 --- a/sql/postgres/patch-oathauth_users-drop-id-nextval.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE oathauth_users CHANGE id id INT NOT NULL; diff --git a/src/Hook/LoadExtensionSchemaUpdates/UpdateTables.php b/src/Hook/LoadExtensionSchemaUpdates/UpdateTables.php index f122ee69..8f422355 100644 --- a/src/Hook/LoadExtensionSchemaUpdates/UpdateTables.php +++ b/src/Hook/LoadExtensionSchemaUpdates/UpdateTables.php @@ -82,11 +82,6 @@ class UpdateTables { 'oathauth_users', "$typePath/patch-oathauth_users-drop-oathauth_users_id_seq.sql" ); - $this->updater->modifyExtensionField( - 'oathauth_users', - 'id', - "$typePath/patch-oathauth_users-drop-id-nextval.sql" - ); break; }