feat: remove archived status from recordings, deletions are now immediate
All checks were successful
Build and Push Backend Image / build (push) Successful in 45s
Build and Push Frontend Image / build (push) Successful in 4m3s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-07 11:42:13 +01:00
parent 754a236e51
commit fde0d63271
5 changed files with 18 additions and 8 deletions

View File

@@ -12,7 +12,7 @@ import {
import { users } from "./users";
import { videos } from "./videos";
export const recordingStatusEnum = pgEnum("recording_status", ["draft", "published", "archived"]);
export const recordingStatusEnum = pgEnum("recording_status", ["draft", "published"]);
export const recordings = pgTable(
"recordings",