mirror of
https://github.com/SrIzan10/echospace.git
synced 2026-06-06 00:56:54 +00:00
11 lines
369 B
SQL
11 lines
369 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `githubUrl` on the `Project` table. All the data in the column will be lost.
|
|
- Added the required column `github` to the `Project` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "Project" DROP COLUMN "githubUrl",
|
|
ADD COLUMN "github" TEXT NOT NULL;
|