xtablo-source/sql/29_add_created_at_col_to_tablo_invites.sql
Arthur Belleville d9a54be4c8
Improve invites
2025-10-28 12:00:45 +01:00

10 lines
No EOL
452 B
SQL

-- Add created_at column to tablo_invites table
ALTER TABLE tablo_invites
ADD COLUMN IF NOT EXISTS created_at TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP NOT NULL;
-- Add comment to document the column
COMMENT ON COLUMN tablo_invites.created_at IS
'Timestamp when the invite was created';
-- Create index for performance when querying by creation date
CREATE INDEX IF NOT EXISTS idx_tablo_invites_created_at ON tablo_invites(created_at);