Files
mnote/supabase/migrations/20250222_alter_media_assets_add_fileinfo.sql
T

5 lines
179 B
SQL
Raw Normal View History

2025-11-23 10:55:04 +08:00
alter table if exists public.media_assets
add column if not exists file_name text,
add column if not exists file_size bigint,
add column if not exists mime_type text;