test wheels
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
-- Remove image field from game_prizes table
|
||||
ALTER TABLE game_prizes
|
||||
DROP COLUMN image;
|
||||
@@ -0,0 +1,6 @@
|
||||
-- Add image field to game_prizes table
|
||||
ALTER TABLE game_prizes
|
||||
ADD COLUMN image VARCHAR(500);
|
||||
|
||||
-- Add comment for the new column
|
||||
COMMENT ON COLUMN game_prizes.image IS 'URL or path to the prize image';
|
||||
@@ -0,0 +1,3 @@
|
||||
-- Remove metadata field from otp_sessions table
|
||||
ALTER TABLE otp_sessions
|
||||
DROP COLUMN metadata;
|
||||
@@ -0,0 +1,6 @@
|
||||
-- Add metadata field to otp_sessions table
|
||||
ALTER TABLE otp_sessions
|
||||
ADD COLUMN metadata JSONB DEFAULT '{}';
|
||||
|
||||
-- Add comment for the new column
|
||||
COMMENT ON COLUMN otp_sessions.metadata IS 'Additional data stored as JSON for the OTP session';
|
||||
Reference in New Issue
Block a user