aboutsummaryrefslogtreecommitdiff
path: root/src/apps.rs
diff options
context:
space:
mode:
authorMelody Horn / boringcactus <melody@boringcactus.com>2021-06-14 20:54:57 -0600
committerMelody Horn / boringcactus <melody@boringcactus.com>2021-06-14 20:54:57 -0600
commit92bf14bb7cc0c10f67a9a67e7512138c15db6ec0 (patch)
tree4a18d50fe97f41671e4b4fd82483bc9c49333d70 /src/apps.rs
parent6bcb3620d8be2f3bcfe72432d17955827894bb6e (diff)
downloadtosin-92bf14bb7cc0c10f67a9a67e7512138c15db6ec0.tar.gz
tosin-92bf14bb7cc0c10f67a9a67e7512138c15db6ec0.zip
start working on migrations
Diffstat (limited to 'src/apps.rs')
-rw-r--r--src/apps.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/apps.rs b/src/apps.rs
index 26c6124..785ce8c 100644
--- a/src/apps.rs
+++ b/src/apps.rs
@@ -1,3 +1,5 @@
-pub struct AppConfig {
+use crate::db::migration::Migration;
+pub struct AppConfig {
+ pub migrations: &'static [Migration],
}