5 lines
179 B
SQL
5 lines
179 B
SQL
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;
|