aboutsummaryrefslogtreecommitdiff
path: root/src/apps.rs
diff options
context:
space:
mode:
authorMelody Horn / boringcactus <melody@boringcactus.com>2021-06-16 14:22:50 -0600
committerMelody Horn / boringcactus <melody@boringcactus.com>2021-06-16 14:22:50 -0600
commit58d2f63f4577bc701b6bd655064cefebb65118b4 (patch)
tree0427ac03e6d0d0ed7879aecaa45cd3937939aa4e /src/apps.rs
parent685b47247aad71468f190c42929ca6f0dce843fa (diff)
downloadtosin-58d2f63f4577bc701b6bd655064cefebb65118b4.tar.gz
tosin-58d2f63f4577bc701b6bd655064cefebb65118b4.zip
actually run migrations
Diffstat (limited to 'src/apps.rs')
-rw-r--r--src/apps.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/apps.rs b/src/apps.rs
index 785ce8c..f72a883 100644
--- a/src/apps.rs
+++ b/src/apps.rs
@@ -1,5 +1,6 @@
use crate::db::migration::Migration;
pub struct AppConfig {
+ pub name: &'static str,
pub migrations: &'static [Migration],
}