Defining your model
CREATE TABLE articles (
id serial NOT NULL PRIMARY KEY,
name text NOT NULL,
description text
);class Article
include Clear::Model
column name : String
column description : String?
column id : Int32, primary: true, presence: false
endinclude Clear::Modelcolumn name : StringLast updated