Skip to content

Commit

Permalink
remove development 1=1
Browse files Browse the repository at this point in the history
  • Loading branch information
scott-roepnack-zocdoc committed May 19, 2016
1 parent 2eec3bc commit 02b8884
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions model/Models/Database.cs
Original file line number Diff line number Diff line change
Expand Up @@ -875,9 +875,9 @@ t.is_nullable as 'Nullable'
from sys.types t
inner join sys.schemas s on s.schema_id = t.schema_id
inner join sys.types tt on t.system_type_id = tt.user_type_id
where 1=1
and t.is_user_defined = 1
and t.is_table_type = 0";
where
t.is_user_defined = 1
and t.is_table_type = 0";

using (var dr = cm.ExecuteReader()) {
LoadUserDefinedTypesBase(dr, UserDefinedTypes);
Expand Down

0 comments on commit 02b8884

Please sign in to comment.