rorm-cli 0.9.0

The cli tool for managing rorm applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![cfg_attr(docsrs, feature(doc_cfg))]

/// Reexport the config
pub use rorm_declaration::config;

/// Reexports for executing the defined cli parser via another
pub mod entry;
/// This module is used for creating a configuration file that can be used by the
/// binary version.
pub mod init;
/// This module handles the creation of migration files
pub mod make_migrations;
/// This module is used for applying migrations
pub mod migrate;

mod linter;
mod squash_migrations;
mod utils;