diff options
Diffstat (limited to 'src/database.rs')
| -rw-r--r-- | src/database.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/database.rs b/src/database.rs index 0998b2e..a9af02b 100644 --- a/src/database.rs +++ b/src/database.rs @@ -36,6 +36,14 @@ pub mod v1 { INSERT INTO "auth_meta" VALUES ('version', '1'); "#; + pub const DROP_TABLES: &str = r#" + + DROP TABLE "accounts"; + + DROP TABLE "auth_meta"; + + "#; + pub const VERSION: &str = "1"; } pub use v1 as current; |
