Files
kubesphere/vendor/github.com/rubenv/sql-migrate/test-migrations/1_initial.sql
2023-02-12 23:09:20 +08:00

9 lines
218 B
SQL

-- +migrate Up
-- SQL in section 'Up' is executed when this migration is applied
CREATE TABLE people (id int);
-- +migrate Down
-- SQL section 'Down' is executed when this migration is rolled back
DROP TABLE people;