use Red; | |
model Person { | |
has UInt $.id is id; | |
has Str $.name is column; | |
has Str $.email is column{ :nullable }; | |
} | |
my $*RED-DB = database "SQLite"; | |
Person.^create-table; | |
Person.^create: :name<Fernando>, :email<fco@aco.com>; | |
Person.^create: :name<Aline>, :email<aja@aco.com>; | |
Person.^create: :name<Fernanda>; | |
Person.^create: :name<Sophia>; | |
.say for Person.^all.map: { "{ .name }{ " => { .email }" if .email }" }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment