mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-10 04:22:09 +10:00
13 lines
457 B
SQL
13 lines
457 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `mWebsite` to the `Developer` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `mWebsite` to the `Publisher` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "Developer" ADD COLUMN "mWebsite" TEXT NOT NULL;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "Publisher" ADD COLUMN "mWebsite" TEXT NOT NULL;
|