Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: downgrade migrations, tables scheme prefix #117

Merged
merged 3 commits into from
Sep 23, 2024
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 state/storage/sqlstorage/migrations/0002.sql
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ CREATE TABLE IF NOT EXISTS sequenced_batches


-- +migrate Down
DROP TABLE IF EXISTS sync.sequenced_batches;
DROP TABLE IF EXISTS sequenced_batches;
2 changes: 1 addition & 1 deletion state/storage/sqlstorage/migrations/0003.sql
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ CREATE TABLE IF NOT EXISTS reorg_log (

-- +migrate Down
DROP TABLE IF EXISTS virtual_batch;
DROP TABLE IF EXISTS reorg_log;
DROP TABLE IF EXISTS reorg_log;
2 changes: 1 addition & 1 deletion state/storage/sqlstorage/migrations/0004.sql
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ CREATE TABLE IF NOT EXISTS kv (

-- +migrate Down

DROP TABLE IF EXISTS kv;
DROP TABLE IF EXISTS kv;
2 changes: 1 addition & 1 deletion state/storage/sqlstorage/migrations/0005.sql
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ CREATE TABLE IF NOT EXISTS rollback_batches_log (

-- +migrate Down

DROP TABLE IF EXISTS sync.rollback_batches_log;
DROP TABLE IF EXISTS rollback_batches_log;
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
)

var (
Version = "v1.0.1"
Version = "v1.0.2"
)

// PrintVersion prints version info into the provided io.Writer.
Expand Down
Loading