Files
lassistanoque/backend/internal/adapter/database/turso/migrations/000003_files.up.sql
T
2026-08-07 19:20:16 +02:00

12 lines
463 B
SQL

create table files (
id text not null primary key,
name text not null default '',
content_type text not null default '',
storage_path text not null default '',
storage_filename text not null default '',
date_created numeric not null default current_timestamp,
date_updated numeric not null default 0,
content blob,
_version text not null
);