module
Memo::Database
Overview
Database initialization and schema management
Extended Modules
Defined in:
memo/database.crInstance Method Summary
-
#create(path : String) : DB::Database
Create database connection and initialize schema (standalone mode)
-
#init(db : DB::Database)
Initialize Memo schema in provided database
-
#load_schema(db : DB::Database)
Load memo schema into the provided database (embedded mode) Safe to call multiple times (uses IF NOT EXISTS)
Instance Method Detail
Create database connection and initialize schema (standalone mode)
Accepts either a file path (SQLite) or connection string (postgres://...). Sets the appropriate dialect automatically.
Initialize Memo schema in provided database
Uses the dialect attached to the db connection to generate the correct DDL for the backend (SQLite or PostgreSQL). Safe to call multiple times (uses IF NOT EXISTS)
Load memo schema into the provided database (embedded mode) Safe to call multiple times (uses IF NOT EXISTS)