Commit 78fe5883 by utkarshcmu

Removed NewAddColumnMigration via 3473

parent 79d0f47e
...@@ -64,10 +64,6 @@ type AddColumnMigration struct { ...@@ -64,10 +64,6 @@ type AddColumnMigration struct {
column *Column column *Column
} }
func NewAddColumnMigration(table Table, col *Column) *AddColumnMigration {
return &AddColumnMigration{tableName: table.Name, column: col}
}
func (m *AddColumnMigration) Table(tableName string) *AddColumnMigration { func (m *AddColumnMigration) Table(tableName string) *AddColumnMigration {
m.tableName = tableName m.tableName = tableName
return m return m
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment