diff --git a/sq/hasher.go b/sq/hasher.go index 8a5fc49..7a2823d 100644 --- a/sq/hasher.go +++ b/sq/hasher.go @@ -36,6 +36,10 @@ func HashSqliteSchema(ctx context.Context, schemaStr string) (string, error) { return "", err } + return HashSqliteDatabase(ctx, db) +} + +func HashSqliteDatabase(ctx context.Context, db DB) (string, error) { ss, err := CreateSqliteDatabaseSchemaString(ctx, db) if err != nil { return "", err