Skip to content

Commit fe5065d

Browse files
nicUpchurchdroyad
authored andcommitted
Add JournalToOracleTable extension method
1 parent 8cb2925 commit fe5065d

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/dbup-oracle/OracleExtensions.cs

+13
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,19 @@ public static UpgradeEngineBuilder OracleDatabase(IConnectionManager connectionM
170170
builder.WithPreprocessor(new OraclePreprocessor());
171171
return builder;
172172
}
173+
174+
/// <summary>
175+
/// Tracks the list of executed scripts in an Oracle table.
176+
/// </summary>
177+
/// <param name="builder">The builder.</param>
178+
/// <param name="schema">The schema.</param>
179+
/// <param name="table">The table.</param>
180+
/// <returns></returns>
181+
public static UpgradeEngineBuilder JournalToOracleTable(this UpgradeEngineBuilder builder, string schema, string table)
182+
{
183+
builder.Configure(c => c.Journal = new OracleTableJournal(() => c.ConnectionManager, () => c.Log, schema, table));
184+
return builder;
185+
}
173186
}
174187
#pragma warning restore IDE0060 // Remove unused parameter
175188
}

0 commit comments

Comments
 (0)