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

Align migration folder and crate names with prefix "migrate-" #704

Merged
merged 1 commit into from
Feb 4, 2020
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
72 changes: 36 additions & 36 deletions workspaces/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions workspaces/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ members = [

# Migrations will be listed here. They won't need to be listed as a
# workspace member when we add cross-workspace dependencies.
"api/migration/migrations/v0.1/borkseed",
"api/migration/migrations/v0.1/host-containers-version",
"api/migration/migrations/v0.2/containerd-config-path",
"api/migration/migrations/v0.2/remove-region",
"api/migration/migrations/v0.1/migrate-borkseed",
"api/migration/migrations/v0.1/migrate-host-containers-version",
"api/migration/migrations/v0.2/migrate-containerd-config-path",
"api/migration/migrations/v0.2/migrate-remove-region",

"models",

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "remove-region"
name = "migrate-borkseed"
version = "0.1.0"
authors = ["Tom Kirchner <[email protected]>"]
edition = "2018"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "host-containers-version-migration"
name = "migrate-host-containers-version"
version = "0.1.0"
authors = ["Erikson Tung <[email protected]>"]
edition = "2018"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "containerd-config-path"
name = "migrate-containerd-config-path"
version = "0.1.0"
authors = ["Tom Kirchner <[email protected]>"]
edition = "2018"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "borkseed-migration"
name = "migrate-remove-region"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
name = "migrate-remove-region"
name = "migrate-region"

I think this makes more sense now that it uses the helper.

version = "0.1.0"
authors = ["Tom Kirchner <[email protected]>"]
edition = "2018"
Expand Down