Skip to content

Commit

Permalink
update schema version to 0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
vancexu committed Jan 23, 2018
1 parent f224fc3 commit 312882c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
6 changes: 2 additions & 4 deletions schema/cadence/versioned/v0.3/manifest.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
{
"CurrVersion": "0.3",
"MinCompatibleVersion": "0.3",
"Description": "add client_library_version, client_feature_version, client_impl, signal_decision to mutable state, add kind to tasklist",
"Description": "add client_library_version, client_feature_version, client_impl to mutable state",
"SchemaUpdateCqlFiles": [
"add_client_version.cql",
"add_last_first_event_id.cql",
"add_signal_decision.cql",
"add_tasklist_kind.cql"
"add_last_first_event_id.cql"
]
}
9 changes: 9 additions & 0 deletions schema/cadence/versioned/v0.4/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"CurrVersion": "0.4",
"MinCompatibleVersion": "0.4",
"Description": "add signal_decision to mutable state, add kind to taskList",
"SchemaUpdateCqlFiles": [
"add_signal_decision.cql",
"add_tasklist_kind.cql"
]
}
2 changes: 1 addition & 1 deletion tools/cassandra/updateTask_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ func (s *UpdateSchemaTestSuite) TestDryrun() {
s.Nil(err)
// update the version to the latest
s.log.Infof("Ver: %v", ver)
s.Equal(0, cmpVersion(ver, "0.3"))
s.Equal(0, cmpVersion(ver, "0.4"))

dropAllTablesTypes(client)
}
Expand Down

0 comments on commit 312882c

Please sign in to comment.