[bugfix] In Postgres, drop shortcodedomain constraint before creating new emoji table (#1528)

This commit is contained in:
tobi 2023-02-18 17:54:51 +01:00 committed by GitHub
parent a684fc4628
commit a0068e8915
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,11 +24,21 @@ import (
gtsmodel "github.com/superseriousbusiness/gotosocial/internal/db/bundb/migrations/20211113114307_init"
"github.com/uptrace/bun"
"github.com/uptrace/bun/dialect"
)
func init() {
up := func(ctx context.Context, db *bun.DB) error {
return db.RunInTx(ctx, nil, func(ctx context.Context, tx bun.Tx) error {
// SQLite doesn't mind creating multiple constraints with the same name,
// but Postgres balks at it, so remove the constraint before we go editing
// the emoji tables.
if tx.Dialect().Name() == dialect.PG {
if _, err := tx.ExecContext(ctx, "ALTER TABLE ? DROP CONSTRAINT ?", bun.Ident("emojis"), bun.Safe("shortcodedomain")); err != nil {
return err
}
}
// create the new emojis table
if _, err := tx.
NewCreateTable().
@ -63,7 +73,7 @@ func init() {
}
// rename the new table to the same name as the old table was
if _, err := tx.ExecContext(ctx, "ALTER TABLE new_emojis RENAME TO emojis;"); err != nil {
if _, err := tx.ExecContext(ctx, "ALTER TABLE ? RENAME TO ?", bun.Ident("new_emojis"), bun.Ident("emojis")); err != nil {
return err
}