bx-orm-configuration

Installation
SKILL.md

bx-orm: Configuration

Enabling ORM in Application.bx

class {

    this.datasource = "myApp"  // default datasource for ORM

    this.ORMenabled = true
    this.ormSettings = {
        // required — always specify to avoid startup performance hit
        entityPaths          : [ "models/entities" ],

        // database schema management
        dbcreate             : "update",      // none | update | dropcreate
Installs
10
First Seen
Apr 15, 2026
bx-orm-configuration — ortus-boxlang/skills