mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-06-27 11:20:40 -04:00
12 lines
343 B
SQL
12 lines
343 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `uuid` on the `File` table. All the data in the column will be lost.
|
|
- You are about to drop the column `uuid` on the `Folder` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "File" DROP COLUMN "uuid";
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "Folder" DROP COLUMN "uuid";
|