Modrinth/migrations/20200730223151_more-not-null.sql
Aeledfyr 781f0c843e
Implement more database methods and basic API routes (#50)
* feat: Implement more database methods & add mod and version routes

* feat: Implement deleting mods/versions & implement categories

* feat: Implement routes for categories, game versions & loaders

* feat: Reorganize API routes in a (hopefully) usable way
2020-08-12 12:54:03 -07:00

7 lines
149 B
SQL

-- Add migration script here
ALTER TABLE versions
ALTER COLUMN mod_id SET NOT NULL;
ALTER TABLE release_channels
ALTER COLUMN channel SET NOT NULL;