class
Focus::Metadata::Column
- Focus::Metadata::Column
- Reference
- Object
Defined in:
generator/metadata/column.crConstructors
Instance Method Summary
- #comment : String | Nil
- #data_type : DataType
- #has_default : Bool
- #is_generated : Bool
- #is_nullable : Bool
- #is_primary_key : Bool
- #name : String
Constructor Detail
def self.new(name : String, is_primary_key : Bool, is_nullable : Bool, is_generated : Bool, has_default : Bool, data_type : Focus::Metadata::Column::DataType, comment : Nil | String = nil)
#