connector { provider: .sqlite, url: "sqlite::memory:", } server { bind: ("0.0.0.0", 4015) } model Support { @id @autoIncrement @readonly id: Int @onSet($if($presents, $toWordCase)) toWordCase: String? @onSet($if($presents, $toLowerCase)) toLowerCase: String? @onSet($if($presents, $toUpperCase)) toUpperCase: String? @onSet($if($presents, $toSentenceCase)) toSentenceCase: String? @onSet($if($presents, $toTitleCase)) toTitleCase: String? @onSet($if($presents, $trim)) trim: String? @onSet($if($presents, $padEnd(5, "_"))) padEnd: String? @onSet($if($presents, $padStart(5, "_"))) padStart: String? @onSet($if($presents, $regexReplace(/_/, "-"))) regexReplace: String? }