13 lines
188 B
SQL
13 lines
188 B
SQL
-- Ver todas as regras no banco
|
|
SELECT
|
|
id,
|
|
owner_id,
|
|
status,
|
|
type,
|
|
weekdays,
|
|
start_date,
|
|
end_date,
|
|
start_time,
|
|
created_at
|
|
FROM recurrence_rules
|
|
ORDER BY created_at DESC; |