Compare commits
2 commits
9e2a0914a0
...
dc269f13ee
| Author | SHA1 | Date | |
|---|---|---|---|
| dc269f13ee | |||
| 8f1e985cbc |
1 changed files with 3 additions and 2 deletions
|
|
@ -287,7 +287,8 @@ export async function initDb() {
|
||||||
FROM apps a
|
FROM apps a
|
||||||
CROSS JOIN (VALUES
|
CROSS JOIN (VALUES
|
||||||
('view', 'View & Run Reports', 'Browse and run all custom reports', 1),
|
('view', 'View & Run Reports', 'Browse and run all custom reports', 1),
|
||||||
('export', 'Export to CSV', 'Download report results as a CSV file', 2)
|
('export', 'Export to CSV', 'Download report results as a CSV file', 2),
|
||||||
|
('edit', 'Edit Directors Forecast', 'Edit pickup/dry/wet overrides and save forecast snapshots', 3)
|
||||||
) AS c(slug, name, description, sort_order)
|
) AS c(slug, name, description, sort_order)
|
||||||
WHERE a.slug = 'reports'
|
WHERE a.slug = 'reports'
|
||||||
ON CONFLICT (app_id, slug) DO UPDATE SET
|
ON CONFLICT (app_id, slug) DO UPDATE SET
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue