# Pastebin 40ZxT6q9 raku -I. -e ' use Red:api<2>; model BBB { has UInt $.id is serial; has Str $.xx is column; } red-defaults default => database "SQLite"; schema(BBB).create; BBB.^create: :xx; BBB.^all.map(*.xx).Seq.raku.say ' ("bla",).Seq