class Article

Defined in:

models/article.cr

Constant Summary

FIELDS_ = {"id" => {type: "big_int", kwargs: {primary_key: true, auto: true}}, "title" => {type: "string", kwargs: {max_size: 255}}, "content" => {type: "text", kwargs: {}}} of Nil => Nil

Instance Method Summary

Instance Method Detail

def comments #

def content : String | Nil | Nil #

def content! #

def content=(content : String | Nil | Nil) #

def content? #

def id : Int32 | Int64 | Nil | Nil #

def id! #

def id=(id : Int32 | Int64 | Nil | Nil) #

def id? #

def title : String | Nil | Nil #

def title! #

def title=(title : String | Nil | Nil) #

def title? #