EntityFramework6.Npgsql
EntityFramework6.Npgsql copied to clipboard
Make AddStatment protected
Currently all functions that work on MigrationOperation are virtual so it's possible to override them. But in the end, all of them call AddStatment to actually register the migration statement and that function, along with migrationStatments are private, so in reality it's not possible to do anything in the override.
@roji, Can you please make AddStatment protected, along with helpers such as GetTableNameFromFullTableName and various Append* misc functions?