diff --git a/server/migrations/sql/0012_guild_invites.sql b/server/migrations/sql/0012_guild_invites.sql index c013686a4..cd208aa40 100644 --- a/server/migrations/sql/0012_guild_invites.sql +++ b/server/migrations/sql/0012_guild_invites.sql @@ -1,5 +1,3 @@ -BEGIN; - -- Dedicated table for guild-initiated scout invitations, separate from -- player-initiated applications. This gives each invitation a real serial PK -- so the client's InvitationID field can map to an actual database row @@ -19,5 +17,3 @@ FROM guild_applications WHERE application_type = 'invited'; DELETE FROM guild_applications WHERE application_type = 'invited'; - -COMMIT; diff --git a/server/migrations/sql/0014_return_guilds.sql b/server/migrations/sql/0014_return_guilds.sql index 417958e96..afed5b5e2 100644 --- a/server/migrations/sql/0014_return_guilds.sql +++ b/server/migrations/sql/0014_return_guilds.sql @@ -1,5 +1 @@ -BEGIN; - ALTER TABLE public.guilds ADD COLUMN IF NOT EXISTS return_type SMALLINT NOT NULL DEFAULT 0; - -COMMIT; diff --git a/server/migrations/sql/0015_tournament.sql b/server/migrations/sql/0015_tournament.sql index 797698e7b..692e3849b 100644 --- a/server/migrations/sql/0015_tournament.sql +++ b/server/migrations/sql/0015_tournament.sql @@ -1,5 +1,3 @@ -BEGIN; - CREATE TABLE IF NOT EXISTS tournaments ( id SERIAL PRIMARY KEY, name VARCHAR(64) NOT NULL, @@ -44,5 +42,3 @@ CREATE TABLE IF NOT EXISTS tournament_results ( stage_handle INTEGER NOT NULL DEFAULT 0, submitted_at TIMESTAMPTZ NOT NULL DEFAULT NOW() ); - -COMMIT;