['type' => 'integer'], 'title' => ['type' => 'string', 'length' => 255], 'user_id' => ['type' => 'integer', 'null' => true], '_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['id']]] ]; public $records = [ ['title' => 'First Comment', 'user_id' => 1], ['title' => 'Second Comment', 'user_id' => 1], ['title' => 'Third Comment', 'user_id' => 2], ]; }