inital commit
This commit is contained in:
9
deployment/init.sql
Normal file
9
deployment/init.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
CREATE TABLE IF NOT EXISTS users (
|
||||
id INT PRIMARY KEY,
|
||||
name VARCHAR(100),
|
||||
age INT
|
||||
);
|
||||
|
||||
INSERT INTO users (id, name, age)
|
||||
VALUES (1, 'Test User', 30)
|
||||
ON CONFLICT DO NOTHING;
|
||||
Reference in New Issue
Block a user