summaryrefslogtreecommitdiffstats
path: root/schema/mysql-migrations/upgrade_69.sql
diff options
context:
space:
mode:
Diffstat (limited to 'schema/mysql-migrations/upgrade_69.sql')
-rw-r--r--schema/mysql-migrations/upgrade_69.sql9
1 files changed, 9 insertions, 0 deletions
diff --git a/schema/mysql-migrations/upgrade_69.sql b/schema/mysql-migrations/upgrade_69.sql
new file mode 100644
index 0000000..7bf764e
--- /dev/null
+++ b/schema/mysql-migrations/upgrade_69.sql
@@ -0,0 +1,9 @@
+ALTER TABLE sync_run
+ DROP COLUMN first_related_activity,
+ ADD COLUMN last_former_activity VARBINARY(20) DEFAULT NULL AFTER objects_modified;
+
+INSERT INTO director_schema_migration
+ SET migration_time = NOW(),
+ schema_version = 69;
+
+