This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
otter-space-sdk/db/migrations/001_create_enum_Rating_2024_06_04.sql

10 lines
134 B
MySQL
Raw Normal View History

-- +migrate Up
CREATE TYPE Rating AS ENUM (
'safe',
'questionable',
'explicit'
);
-- +migrate Down
DROP TYPE Rating;