Creates projects to organize tasks under. (Note the migration also contains the tables for creating folders for projects as well because adding foreign keys is a PITA in sqlite apparently). Reviewed-on: #19 Co-authored-by: Drew Galbraith <drew@tiramisu.one> Co-committed-by: Drew Galbraith <drew@tiramisu.one>
5 lines
61 B
Rust
5 lines
61 B
Rust
mod project;
|
|
mod task;
|
|
|
|
pub use project::*;
|
|
pub use task::*;
|