inital commit

This commit is contained in:
2024-12-12 08:18:01 +03:00
commit 414fd593f3
8 changed files with 403 additions and 0 deletions

9
deployment/init.sql Normal file
View 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;