github.com/oinume/lekcije@v0.0.0-20231017100347-5b4c5eb6ab24/backend/db/migrations/20180609050000_alter_event_log_email.sql (about) 1 -- +goose Up 2 -- SQL in section 'Up' is executed when this migration is applied 3 ALTER TABLE event_log_email 4 MODIFY COLUMN `email_type` enum('new_lesson_notifier','follow_reminder', 'registration') COLLATE utf8mb4_bin NOT NULL; 5 6 -- +goose Down 7 -- SQL section 'Down' is executed when this migration is rolled back 8 ALTER TABLE event_log_email 9 MODIFY COLUMN `email_type` enum('new_lesson_notifier','follow_reminder') COLLATE utf8mb4_bin NOT NULL;