Fixed migration

This commit is contained in:
Dominic Grimm 2022-02-13 21:54:04 +01:00
parent d583ca58ff
commit bcc8db2004

View file

@ -17,7 +17,7 @@
*/
-- +micrate Up
-- SQL in section ' Up ' is executed when this migration is applied
CREATE TYPE user_roles AS ENUM (' Teacher ', ' Student ');
CREATE TYPE user_roles AS ENUM ('Teacher', 'Student');
CREATE TABLE users(
id BIGSERIAL PRIMARY KEY,