Files
2025-12-16 17:28:36 +00:00

7 lines
140 B
SQL

-- Add a table to hectic schema alongside user's existing tables
CREATE TABLE hectic.test_table (
id SERIAL PRIMARY KEY,
value TEXT
);