forked from hinterland/hearth
7 lines
140 B
SQL
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
|
|
);
|
|
|