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,23 @@
-- +goose Up
INSERT INTO master_setting_values (
setting_key,
value,
is_encrypted,
created_at,
updated_at
)
VALUES (
'AUTH_LOGIN_EMAIL_OTP_ENABLED',
'false',
0,
UTC_TIMESTAMP(),
UTC_TIMESTAMP()
)
ON DUPLICATE KEY UPDATE
value = VALUES(value),
is_encrypted = 0,
updated_at = UTC_TIMESTAMP();
-- +goose Down
DELETE FROM master_setting_values
WHERE setting_key = 'AUTH_LOGIN_EMAIL_OTP_ENABLED';