mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-06-28 21:05:36 -04:00
feat: added file upload + dir creation
This commit is contained in:
parent
b1c295d2ac
commit
eedab606f8
25 changed files with 965 additions and 103 deletions
|
@ -0,0 +1,10 @@
|
|||
/*
|
||||
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;
|
Loading…
Add table
Add a link
Reference in a new issue