API

OrionORM.@ModelMacro
    macro Model(modelName, colsExpr)

Generate a model struct definition and register it in the global model registry.

Exemplo:
@Model User (
    ("id", NUMBER, PrimaryKey(), AutoIncrement()),
    ("name", VARCHAR(255), NotNull()),
    ("email", VARCHAR(255), NotNull(), Unique())
)
source