michal/tit
Browse tree · Show commit · Download archive
Blob: src/store/migrations/020_repository_profiles.sql
CREATE TABLE repository_profile (
repository_id TEXT PRIMARY KEY
REFERENCES repository (id) ON DELETE RESTRICT,
description TEXT NOT NULL DEFAULT ''
CHECK (length(CAST(description AS BLOB)) <= 512)
) STRICT;