mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 18:52:06 +00:00
13 lines
469 B
SQL
13 lines
469 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `rating` to the `BeerComment` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `rating` to the `BreweryComment` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "BeerComment" ADD COLUMN "rating" INTEGER NOT NULL;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "BreweryComment" ADD COLUMN "rating" INTEGER NOT NULL;
|