Open
Description
From @adamralph on May 7, 2014 10:55
Perhaps an edge case which you don't care about, but I thought I'd put it here FWIW.
If I have a Commits table in a Foo schema, this line shortcircuits the schema creation
IF EXISTS(SELECT * FROM sysobjects WHERE name='Commits' AND xtype = 'U') RETURN;
I guess it needs to check if it's in the target schema, not just it's name.
Copied from original issue: NEventStore/NEventStore#343