Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion server/controller/db/metadb/migrator/schema/const.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ const (
RAW_SQL_ROOT_DIR = "/etc/metadb/schema/rawsql"

DB_VERSION_TABLE = "db_version"
DB_VERSION_EXPECTED = "6.6.1.71"
DB_VERSION_EXPECTED = "6.6.1.72"
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
START TRANSACTION;

UPDATE alarm_endpoint SET push_cycle=0 WHERE push_frequency IS NULL;

UPDATE db_version SET version='6.6.1.72';

COMMIT;
Loading