-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1fc7fea
commit 73b261a
Showing
3 changed files
with
34 additions
and
26 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
falak/pkg/store/migrations/000002_calendar_o_calendar.down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,21 @@ | ||
DROP INDEX IF EXISTS idx_calendar_account; | ||
DROP INDEX IF EXISTS idx_event_calendar; | ||
DROP INDEX IF EXISTS idx_event_dtstart; | ||
DROP INDEX IF EXISTS idx_event_dtend; | ||
DROP INDEX IF EXISTS idx_exception_event; | ||
DROP INDEX IF EXISTS idx_alarm_event; | ||
|
||
DROP TRIGGER IF EXISTS update_valarm_updated_at ON valarm; | ||
DROP TABLE IF EXISTS valarm; | ||
|
||
DROP TRIGGER IF EXISTS update_vevent_exception_updated_at ON vevent_exception; | ||
DROP TABLE IF EXISTS vevent_exception; | ||
|
||
DROP TRIGGER IF EXISTS update_vevent_updated_at ON vevent; | ||
DROP TABLE IF EXISTS vevent; | ||
|
||
DROP TRIGGER IF EXISTS update_vcalendar_updated_at ON vcalendar; | ||
DROP TABLE IF EXISTS vcalendar; | ||
|
||
DROP TRIGGER IF EXISTS update_calendar_accounts_updated_at ON calendar_accounts; | ||
DROP TABLE IF EXISTS calendar_accounts; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.