public MigrationColumn(string columnName, MigrationColumnType type, bool isPrimaryKey, bool isNullable)
 {
     Name         = columnName;
     Type         = type;
     IsNullable   = isNullable;
     IsPrimaryKey = isPrimaryKey;
 }
 public MigrationColumn(string columnName, MigrationColumnType type, bool isPrimaryKey, bool isNullable)
 {
     Name = columnName;
     Type = type;
     IsNullable = isNullable;
     IsPrimaryKey = isPrimaryKey;
 }
 public MigrationColumn(Column column, MigrationColumnType type)
 {
     Name         = column.Name;
     IsNullable   = column.IsNullable;
     Type         = type;
     IsPrimaryKey = false;
 }
 public MigrationColumn(Column column, MigrationColumnType type)
 {
     Name = column.Name;
     IsNullable = column.IsNullable;
     Type = type;
     IsPrimaryKey = false;
 }