summaryrefslogtreecommitdiff
path: root/vendor/github.com/uptrace/bun/migrate/auto.go
diff options
context:
space:
mode:
authorLibravatar kim <89579420+NyaaaWhatsUpDoc@users.noreply.github.com>2025-03-10 19:40:16 +0000
committerLibravatar GitHub <noreply@github.com>2025-03-10 19:40:16 +0000
commitbad12a62e60bacf5222e39e26f7da97fdea23c15 (patch)
treecd132c66b3a88dac3af27df77c71891a2bc89fa1 /vendor/github.com/uptrace/bun/migrate/auto.go
parent[chore] add warning message when wazero compiler not supported (#3894) (diff)
downloadgotosocial-bad12a62e60bacf5222e39e26f7da97fdea23c15.tar.xz
bumps our uptrace/bun dependencies to v1.2.11 (#3895)
Diffstat (limited to 'vendor/github.com/uptrace/bun/migrate/auto.go')
-rw-r--r--vendor/github.com/uptrace/bun/migrate/auto.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/github.com/uptrace/bun/migrate/auto.go b/vendor/github.com/uptrace/bun/migrate/auto.go
index 16804cd99..8656902ca 100644
--- a/vendor/github.com/uptrace/bun/migrate/auto.go
+++ b/vendor/github.com/uptrace/bun/migrate/auto.go
@@ -191,7 +191,7 @@ func (am *AutoMigrator) plan(ctx context.Context) (*changeset, error) {
}
// Migrate writes required changes to a new migration file and runs the migration.
-// This will create and entry in the migrations table, making it possible to revert
+// This will create an entry in the migrations table, making it possible to revert
// the changes with Migrator.Rollback(). MigrationOptions are passed on to Migrator.Migrate().
func (am *AutoMigrator) Migrate(ctx context.Context, opts ...MigrationOption) (*MigrationGroup, error) {
migrations, _, err := am.createSQLMigrations(ctx, false)