You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: some changes on share flow
* feat: render contact and recipient's avatars
* chore: update badge color
* feat: update Share to ShareModal
* feat: use common router
* feat: create data room recipients records
* feat: reload page on success
* fix: modal input ring
* feat: getting started with async dataroom email job
* feat: getting started with document share page layout
* feat: render DataRoomFileExplorer on shared dataroom
* feat: shorten url with (document)
* feat: rendering dataroom preview page (layout) as well
* feat: rename folder structure
* feat: cleaning up env variables
* feat: remove access to dataroom
* feat: cleaning up share/access modal
* feat: send a link shared data room with jwt token
* feat: return a share link that can be copied on share modal
* feat: secure shared dataroom page
* feat: securing dataroom file preview page as well
* chore: export/import ExtendedRecipientType
- You are about to drop the column `expiresAt` on the `DataRoomRecipient` table. All the data in the column will be lost.
5
+
- A unique constraint covering the columns `[dataRoomId,email]` on the table `DataRoomRecipient` will be added. If there are existing duplicate values, this will fail.
6
+
- Added the required column `name` to the `DataRoomRecipient` table without a default value. This is not possible if the table is not empty.
7
+
8
+
*/
9
+
-- AlterTable
10
+
ALTERTABLE"DataRoomRecipient" DROP COLUMN "expiresAt",
11
+
ADD COLUMN "name"TEXTNOT NULL;
12
+
13
+
-- CreateIndex
14
+
CREATEUNIQUE INDEX "DataRoomRecipient_dataRoomId_email_key" ON"DataRoomRecipient"("dataRoomId", "email");
0 commit comments