first commit

This commit is contained in:
2025-10-31 17:54:29 +07:00
commit db01b8564d
1066 changed files with 424853 additions and 0 deletions
@@ -0,0 +1,8 @@
CREATE TABLE IF NOT EXISTS subscriptions (
id SERIAL PRIMARY KEY,
service_name VARCHAR(255) NOT NULL,
price INTEGER NOT NULL,
user_id UUID NOT NULL,
start_date DATE NOT NULL,
end_date DATE
);