mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-10 04:22:09 +10:00
Object storage now works fully, with the permission system. It still needs additional external endpoints for updating and deleting objects from the API, but it is otherwise complete. Further tasks include writing an S3 adapter.
13 lines
590 B
SQL
13 lines
590 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `displayName` to the `User` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `email` to the `User` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `profilePicture` to the `User` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "User" ADD COLUMN "displayName" TEXT NOT NULL,
|
|
ADD COLUMN "email" TEXT NOT NULL,
|
|
ADD COLUMN "profilePicture" TEXT NOT NULL;
|