mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 20:13:49 +00:00
9 lines
220 B
SQL
9 lines
220 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `hash` to the `User` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "User" ADD COLUMN "hash" TEXT NOT NULL;
|