Drop temp tables in DDL update files for SQLite
This commit is contained in:
parent
ec5e9b31ef
commit
5be98d7714
2 changed files with 2 additions and 0 deletions
|
@ -61,3 +61,4 @@ CREATE TABLE events (
|
|||
INSERT INTO events (event_id, calendar_id, recurrence_id, uid, created, changed, sequence, start, end, recurrence, title, description, location, categories, all_day, free_busy, priority, sensitivity, alarms, attendees, notifyat)
|
||||
SELECT event_id, calendar_id, recurrence_id, uid, created, changed, sequence, start, end, recurrence, title, description, location, categories, all_day, free_busy, priority, sensitivity, alarms, attendees, notifyat FROM temp_events;
|
||||
|
||||
DROP TABLE temp_events;
|
||||
|
|
|
@ -65,3 +65,4 @@ INSERT INTO events (event_id, calendar_id, recurrence_id, uid, created, changed,
|
|||
SELECT event_id, calendar_id, recurrence_id, uid, created, changed, sequence, start, end, recurrence, title, description, location, categories, url, all_day, free_busy, priority, sensitivity, alarms, attendees, notifyat
|
||||
FROM temp_events;
|
||||
|
||||
DROP TABLE temp_events;
|
||||
|
|
Loading…
Add table
Reference in a new issue