class
Noir::PostgresDdlParser::Table
- Noir::PostgresDdlParser::Table
- Reference
- Object
Defined in:
miniparsers/postgres_ddl_parser.crConstructors
Instance Method Summary
- #columns : Array(Column)
- #columns=(columns : Array(Column))
- #line : Int32
- #line=(line : Int32)
- #name : String
- #name=(name : String)
- #qualified : String
- #schema : String
- #schema=(schema : String)
- #source : String
- #source=(source : String)
- #view=(view : Bool)
- #view? : Bool
Constructor Detail
def self.new(schema : String, name : String, columns : Array(Noir::PostgresDdlParser::Column) = [] of Column, view : Bool = false, source : String = "", line : Int32 = 0)
#