LinuxDoku / migratordotnet

Automatically exported from code.google.com/p/migratordotnet
0 stars 0 forks source link

SQL Server update breaks older deployments (Migrator.Providers/ Impl/ SqlServer/ SqlServerTransformationProvider.cs, r144) #148

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Using an older version of Migrator.NET (0.80), our SchemaInfo table was
created under a default namespace that wasn't dbo.
2. When upgrading to the latest source, TableExists("SchemaInfo") now
returns false, because it's looking in dbo.
3. The system then attempts to create a new table without using a
namespace, and runs into an error because the table already exists.

Original issue reported on code.google.com by chris.ma...@gmail.com on 14 Apr 2010 at 3:37