github.com/oinume/lekcije@v0.0.0-20231017100347-5b4c5eb6ab24/backend/db/migrations/20180505050000_update_m_country_taiwan_china.sql (about) 1 -- +goose Up 2 -- SQL in section 'Up' is executed when this migration is applied 3 BEGIN; 4 UPDATE `m_country` SET name_ja='台湾' WHERE id = 158; 5 UPDATE `m_country` SET name_ja='中華人民共和国' WHERE id = 156; 6 COMMIT; 7 8 -- +goose Down 9 -- SQL section 'Down' is executed when this migration is rolled back 10 BEGIN; 11 UPDATE `m_country` SET name_ja='台湾(台湾省/中華民国)' WHERE id = 158; 12 UPDATE `m_country` SET name_ja='中華人民共和国|中国' WHERE id = 156; 13 COMMIT;