v0.12.24 minor user manager buf fixes
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "rosterchirp-backend",
|
||||
"version": "0.12.23",
|
||||
"version": "0.12.24",
|
||||
"description": "RosterChirp backend server",
|
||||
"main": "src/index.js",
|
||||
"scripts": {
|
||||
|
||||
3
backend/src/models/migrations/010_dob_guardian.sql
Normal file
3
backend/src/models/migrations/010_dob_guardian.sql
Normal file
@@ -0,0 +1,3 @@
|
||||
-- Migration 010: Date of birth and guardian fields
|
||||
ALTER TABLE users ADD COLUMN IF NOT EXISTS date_of_birth DATE;
|
||||
ALTER TABLE users ADD COLUMN IF NOT EXISTS guardian_user_id INTEGER REFERENCES users(id) ON DELETE SET NULL;
|
||||
Reference in New Issue
Block a user