Modrinth/migrations/20201003211651_make-name-null.sql
Geometrically 68ee2bdcdc
Fix another GitHub OAuth Bug, allow users to register with null names. (#69)
* Change header name

* Add default bio value

* Remove default

* Make name null

* Run prepare
2020-10-03 16:31:10 -07:00

6 lines
130 B
SQL

-- Add migration script here
ALTER TABLE users
ALTER COLUMN name DROP NOT NULL;
ALTER TABLE users
ALTER COLUMN name DROP DEFAULT;