Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 added migrate v13.go to drop constraint `UNIQUE(name, time_star… #552

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions migration/current.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@ func Migrations() []*gormigrate.Migration {
v10(),
v11(),
v12(),
v13(),
}
}
30 changes: 30 additions & 0 deletions migration/v13.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
package migration

import (
"github.com/go-gormigrate/gormigrate/v2"
"gorm.io/gorm"
)

func v13() *gormigrate.Migration {
return &gormigrate.Migration{
ID: "13",
Migrate: func(db *gorm.DB) error {
return db.Exec(
`
SET @sql = (
SELECT IF(
COUNT(*) > 0,
'ALTER TABLE events DROP CONSTRAINT idx_name_time_start_time_end',
'SELECT "Constraint idx_name_time_start_time_end does not exist thus not dropping it"'
) FROM information_schema.TABLE_CONSTRAINTS
WHERE CONSTRAINT_NAME = 'idx_name_time_start_time_end' AND TABLE_NAME = 'events'
);

PREPARE statement FROM @sql;
EXECUTE statement;
DEALLOCATE PREPARE statement;
`,
).Error
},
}
}