github.com/oinume/lekcije@v0.0.0-20231017100347-5b4c5eb6ab24/backend/db/migrations/20170213050000_update_m_country_taiwan.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  COMMIT;
     6  
     7  -- +goose Down
     8  -- SQL section 'Down' is executed when this migration is rolled back
     9  BEGIN;
    10  UPDATE `m_country` SET name_ja='台湾' WHERE id = 158;
    11  COMMIT;