Skip to content

Commit

Permalink
IDatabase: Remove public on method definitions.
Browse files Browse the repository at this point in the history
  • Loading branch information
cocytus committed Oct 1, 2022
1 parent 6e22b1f commit 2051845
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions grate/Migration/IDatabase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ public interface IDatabase : IAsyncDisposable

bool SplitBatchStatements { get; }
string StatementSeparatorRegex { get; }
public string ScriptsRunTable { get; }
public string ScriptsRunErrorsTable { get; }
public string VersionTable { get; }
string ScriptsRunTable { get; }
string ScriptsRunErrorsTable { get; }
string VersionTable { get; }
DbConnection ActiveConnection { set; }

Task InitializeConnections(GrateConfiguration configuration);
Expand Down

0 comments on commit 2051845

Please sign in to comment.