Skip to content

Commit

Permalink
fix: call functions as functions
Browse files Browse the repository at this point in the history
  • Loading branch information
steveoh committed May 11, 2022
1 parent fca1d8b commit 6a99484
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ChangeDetection.cs
Expand Up @@ -145,13 +145,13 @@ internal static class ChangeDetection {

foreach (var meta in fieldMeta) {
if (skipSchemas.Contains(meta.Schema)) {
Log.Information($"Treating as static, skipping: {meta.TableName}");
Log.Information($"Treating as static, skipping: {meta.TableName()}");

continue;
}

if (skipTables.Contains($"{meta.Schema}.{meta.Table}")) {
Log.Information($"Treating as static, skipping: {meta.TableName}");
Log.Information($"Treating as static, skipping: {meta.TableName()}");

continue;
}
Expand Down

0 comments on commit 6a99484

Please sign in to comment.