This repository has no description
Something went wrong. Try again.
183 B · 6 lines
SQL
at main
123456CREATE TABLE IF NOT EXISTS rooms ( room_id TEXT PRIMARY KEY, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP);
CREATE INDEX IF NOT EXISTS idx_rooms_room_id ON rooms(room_id);