kickerbot_ng/20241027153235_add_captcha_...

14 lines
274 B
MySQL
Raw Normal View History

2024-10-27 23:19:51 +03:00
-- +goose Up
-- +goose StatementBegin
SELECT 'up SQL query';
alter table captchas
add column created INTEGER DEFAULT 0;
-- +goose StatementEnd
-- +goose Down
-- +goose StatementBegin
SELECT 'down SQL query';
alter table captchas
drop column created;
-- +goose StatementEnd