fp/services/migrations-schema/migrations/00099_add-vtuber_num.sql

6 lines
204 B
SQL

-- adding an INT col to make it compatible with the strapi migration
-- this is meant to be deleted after migration to UUID
ALTER TABLE IF EXISTS api.streams
ADD COLUMN IF NOT EXISTS vtuber_num INT;