Skip to content

Commit

Permalink
https://github.com/chucknorris/roundhouse/pull/61
Browse files Browse the repository at this point in the history
  • Loading branch information
ferventcoder committed Sep 7, 2012
1 parent a7e4527 commit f86deab
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ public ScriptsRunErrorMapping()
Map(x => x.repository_path);
Map(x => x.version).Length(50);
Map(x => x.script_name);
Map(x => x.text_of_script).CustomSqlType("ntext");
Map(x => x.erroneous_part_of_script).CustomSqlType("ntext");
Map(x => x.error_message).CustomSqlType("ntext");
Map(x => x.text_of_script).CustomType("StringClob").CustomSqlType("ntext");
Map(x => x.erroneous_part_of_script).CustomType("StringClob").CustomSqlType("ntext");
Map(x => x.error_message).CustomType("StringClob").CustomSqlType("ntext");

//audit
Map(x => x.entry_date);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public ScriptsRunMapping()
Id(x => x.id).Column("id").GeneratedBy.Identity().UnsavedValue(0);
Map(x => x.version_id);
Map(x => x.script_name);
Map(x => x.text_of_script).CustomSqlType("text");
Map(x => x.text_of_script).CustomType("StringClob").CustomSqlType("text");
Map(x => x.text_hash).Length(512);
Map(x => x.one_time_script);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ public ScriptsRunErrorMapping()
Map(x => x.repository_path);
Map(x => x.version).Length(50);
Map(x => x.script_name);
Map(x => x.text_of_script).CustomSqlType("text");
Map(x => x.erroneous_part_of_script).CustomSqlType("text");
Map(x => x.error_message).CustomSqlType("text");
Map(x => x.text_of_script).CustomType("StringClob").CustomSqlType("text");
Map(x => x.erroneous_part_of_script).CustomType("StringClob").CustomSqlType("text");
Map(x => x.error_message).CustomType("StringClob").CustomSqlType("text");

//audit
Map(x => x.entry_date);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public ScriptsRunMapping()
Id(x => x.id).Column("id").GeneratedBy.Identity().UnsavedValue(0);
Map(x => x.version_id);
Map(x => x.script_name);
Map(x => x.text_of_script).CustomSqlType("text");
Map(x => x.text_of_script).CustomType("StringClob").CustomSqlType("text");
Map(x => x.text_hash).Length(512);
Map(x => x.one_time_script);

Expand Down

0 comments on commit f86deab

Please sign in to comment.