feat: use postgres

This commit is contained in:
Ilia Denisov
2026-04-26 20:34:39 +02:00
committed by GitHub
parent 48b0056b49
commit fe829285a6
365 changed files with 29223 additions and 24049 deletions
+8
View File
@@ -0,0 +1,8 @@
-- +goose Up
CREATE TABLE smoke (
id BIGSERIAL PRIMARY KEY,
note TEXT NOT NULL
);
-- +goose Down
DROP TABLE smoke;