We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34a35b5 commit 43ccf07Copy full SHA for 43ccf07
src/Migrator/Providers/Impl/Oracle/OracleDialect.cs
@@ -45,7 +45,7 @@ public OracleDialect()
45
RegisterColumnType(DbType.String, int.MaxValue, "NCLOB");
46
RegisterColumnType(DbType.Time, "DATE");
47
RegisterColumnType(DbType.Guid, "RAW(16)");
48
- RegisterColumnType(MigratorDbType.Interval, "NUMBER(20,0)");
+ RegisterColumnType(MigratorDbType.Interval, "interval day (9) to second (9)");
49
50
// the original Migrator.Net code had this, but it's a bad idea - when
51
// apply a "null" migration to a "not-null" field, it just leaves it as "not-null" and silent fails
0 commit comments