# Pastebin WeSpYBEL MacBook-Pro-de-Fernando:Red2 fernando$ perl6 -Ilib examples/blog2/index.p6 ✓ Creating tables for Person and Post SQL : CREATE TABLE person( id integer NOT NULL primary key AUTOINCREMENT, name varchar(255) NOT NULL ) SQL : CREATE TABLE post( id integer NOT NULL primary key AUTOINCREMENT, title varchar(255) NOT NULL, created varchar(32) NOT NULL, body varchar(255) NOT NULL, deleted integer NOT NULL, author_id integer NULL references person(id), tags varchar(255) NOT NULL, UNIQUE (title) ) ✓ Creating a Person Cannot invoke this object (REPR: Null; VMNull) in submethod BUILD at /Users/fernando/Documents/Projects/Red2/lib/MetamodelX/Red/Relationship.pm6 (MetamodelX::Red::Relationship) line 19 in method create at /Users/fernando/Documents/Projects/Red2/lib/MetamodelX/Red/Model.pm6 (MetamodelX::Red::Model) line 204 in block at examples/blog2/index.p6 line 19