mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-06-27 20:45:35 -04:00
10 lines
398 B
SQL
10 lines
398 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `mimetype` to the `File` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `size` to the `File` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "File" ADD COLUMN "mimetype" TEXT NOT NULL,
|
|
ADD COLUMN "size" INTEGER NOT NULL;
|