public ColumnModifications(string name, string table) { name.MustNotBeEmpty(); table.MustNotBeEmpty(); Options = new DbEngineOptions(); Current = new CurrentColumnSchema(); Current.Name = name; TableName = table; }