meta: add database migrations; set up migration CLI
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I0cbc9798243134d36f788099ecc3ee5a6a6a6964
This commit is contained in:
parent
63e1fbe554
commit
a4c3cd1517
9 changed files with 366 additions and 0 deletions
18
crates/migrate-cli/Cargo.toml
Normal file
18
crates/migrate-cli/Cargo.toml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
[package]
|
||||
name = "fc-migrate-cli"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
authors.workspace = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
|
||||
[[bin]]
|
||||
name = "fc-migrate"
|
||||
path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
fc-common = { path = "../common" }
|
||||
clap.workspace = true
|
||||
anyhow.workspace = true
|
||||
tracing-subscriber.workspace = true
|
||||
tokio.workspace = true
|
||||
Loading…
Add table
Add a link
Reference in a new issue