5 lines
261 B
MySQL
5 lines
261 B
MySQL
|
-- we are removing vtuber rows because vtubers are data.
|
||
|
-- data is not supposed to be part of schema migrations
|
||
|
-- @see https://github.com/zakpatterson/postgres-schema-migrations?tab=readme-ov-file#schema-migrations-vs-data-migrations
|
||
|
|
||
|
DELETE FROM api.vtubers;
|