6 lines
204 B
MySQL
6 lines
204 B
MySQL
|
-- 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;
|