arcature 0.1.2

Arcature: an opinionated full-stack Rust web framework. One package, batteries included.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! The database layer.
//!
//! SeaORM entities live under `app/models`; this module owns the schema
//! migrations `arc migrate` runs and the seeders `--db-seed` runs.
//!
//! The [`Migrator`](migrations::Migrator) is the single `MigratorTrait` impl.
//! Add new migration files under `migrations/` and append them to
//! `Migrator::migrations()`.

pub mod migrations;
pub mod seeders;

pub use migrations::Migrator;