End to end encrypted attachment upload and streaming
This commit is contained in:
parent
6f292756ed
commit
603d969972
63 changed files with 1926 additions and 156 deletions
|
|
@ -0,0 +1,12 @@
|
|||
/*
|
||||
Warnings:
|
||||
|
||||
- Made the column `communityId` on table `Attachment` required. This step will fail if there are existing NULL values in that column.
|
||||
- Made the column `attachmentId` on table `Chunk` required. This step will fail if there are existing NULL values in that column.
|
||||
|
||||
*/
|
||||
-- AlterTable
|
||||
ALTER TABLE "Attachment" ALTER COLUMN "communityId" SET NOT NULL;
|
||||
|
||||
-- AlterTable
|
||||
ALTER TABLE "Chunk" ALTER COLUMN "attachmentId" SET NOT NULL;
|
||||
Loading…
Add table
Add a link
Reference in a new issue