init push

This commit is contained in:
2026-07-16 22:16:45 +07:00
commit 8b068bdb10
1021 changed files with 332816 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
-- +goose Up
CREATE TABLE IF NOT EXISTS takeover_files (
id BINARY(16) NOT NULL PRIMARY KEY,
takeover_id BINARY(16) NOT NULL,
file_attachment_id BINARY(16) NOT NULL,
KEY idx_takeover_files_takeover_id (takeover_id),
KEY idx_takeover_files_file_attachment_id (file_attachment_id)
);
-- +goose Down
DROP TABLE IF EXISTS takeover_files;