class Marten::DB::Management::Statement::Columns
- Marten::DB::Management::Statement::Columns
- Reference
- Object
Defined in:
marten/db/management/statement/columns.crConstructors
Instance Method Summary
- #columns : Array(String)
- #references_column?(table : String, column : String | Nil)
- #references_table?(name : String | Nil)
- #rename_column(table : String, old_name : String, new_name : String)
- #rename_table(old_name : String, new_name : String)
- #table : String
- 
        #to_s
        
          Returns a nicely readable and concise string representation of this object, typically intended for users. 
Constructor Detail
        
        def self.new(quote_proc : Proc(String, String), table : String, columns : Array(String))
        #
      
      
      Instance Method Detail
        
        def to_s
        #
      
      
        
              Description copied from class Object
            
          
          Returns a nicely readable and concise string representation of this object, typically intended for users.
This method should usually not be overridden. It delegates to
#to_s(IO) which can be overridden for custom implementations.
Also see #inspect.