chore: db migrate
This commit is contained in:
parent
f91c9c2f14
commit
4c6ebb339d
2 changed files with 9 additions and 0 deletions
|
|
@ -0,0 +1,8 @@
|
||||||
|
/*
|
||||||
|
Warnings:
|
||||||
|
|
||||||
|
- Added the required column `username` to the `User` table without a default value. This is not possible if the table is not empty.
|
||||||
|
|
||||||
|
*/
|
||||||
|
-- AlterTable
|
||||||
|
ALTER TABLE "User" ADD COLUMN "username" TEXT NOT NULL;
|
||||||
|
|
@ -263,6 +263,7 @@ model User {
|
||||||
firstNameEN String
|
firstNameEN String
|
||||||
lastName String
|
lastName String
|
||||||
lastNameEN String
|
lastNameEN String
|
||||||
|
username String
|
||||||
gender String
|
gender String
|
||||||
|
|
||||||
address String
|
address String
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue