rocal-cli 0.2.5

CLI tool for Rocal - Full-Stack WASM framework
Documentation
1
2
3
4
5
6
use std::fs::{self, File};

pub fn create_migration_dir() {
    fs::create_dir_all("db/migrations").expect("Failed to create db/migrations");
    File::create("db/migrations/.keep").expect("Failed to create db/migrations/.keep");
}