This commit is contained in:
gustavooth
2026-07-28 20:23:41 -03:00
parent 9de08ceef7
commit 8d4cf22366
44 changed files with 5157 additions and 1124 deletions
@@ -0,0 +1,12 @@
BEGIN;
CREATE TABLE IF NOT EXISTS data_usage_monthly (
month text PRIMARY KEY,
bytes bigint NOT NULL DEFAULT 0
);
INSERT INTO schema_migrations(version)
VALUES ('0006_add_data_usage')
ON CONFLICT (version) DO NOTHING;
COMMIT;