10 lines
216 B
SQL
10 lines
216 B
SQL
INSERT INTO
|
|
"Feature" (slug, enabled, description, "type")
|
|
VALUES
|
|
(
|
|
'attributes',
|
|
false,
|
|
'Enable attributes - Custom fields for users and teams.',
|
|
'OPERATIONAL'
|
|
) ON CONFLICT (slug) DO NOTHING;
|