Files
owlibou_tavern/database/main/exclusive_group.sql

10 lines
191 B
SQL

create table exclusive_group
(
id INTEGER
primary key,
name TEXT not null,
scope TEXT not null,
check (scope IN ('TRAIT', 'SF', 'TALENT', 'SPELL', 'LITURGY'))
);