Files
silo-server/internal/database/testdata/migrations/002_create_libraries.up.sql
T

7 lines
199 B
SQL
Raw Normal View History

2026-05-22 20:26:11 -04:00
CREATE TABLE libraries (
id BIGSERIAL PRIMARY KEY,
name TEXT NOT NULL,
owner_id BIGINT NOT NULL REFERENCES users(id),
created_at TIMESTAMPTZ NOT NULL DEFAULT now()
);