We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31d93d0 commit 8824268Copy full SHA for 8824268
docs/rollback.md
@@ -12,3 +12,13 @@ You can easily roll back to an older version of a single service
12

13
5) Now you have 2 planned actions, that you still need to apply. 
14
15
+# Migrations
16
+If you've deleted the custom migrations cutoff table and you want to bring it back you can run:
17
+```Sql
18
+CREATE TABLE IF NOT EXISTS custom_migration_cutoff
19
+(
20
+ migration_done_at TIMESTAMP NOT NULL,
21
+ kuberpult_version varchar(100) PRIMARY KEY -- the version as it appears on GitHub, e.g. "1.2.3"
22
+);
23
+```
24
+This way you can have this table back.
0 commit comments