Add the migration for the unique index which helps prevent tag deadlocks.

This commit is contained in:
Jake Moshenko 2015-03-23 11:40:21 -04:00
parent 201943ed1c
commit 3d44416016
2 changed files with 30 additions and 4 deletions

View file

@ -19,7 +19,7 @@ up_mysql() {
down_mysql() {
docker kill mysql
docker rm mysql
docker rm -v mysql
}
up_mariadb() {
@ -36,7 +36,7 @@ up_mariadb() {
down_mariadb() {
docker kill mariadb
docker rm mariadb
docker rm -v mariadb
}
up_percona() {
@ -53,7 +53,7 @@ up_percona() {
down_percona() {
docker kill percona
docker rm percona
docker rm -v percona
}
up_postgres() {
@ -70,7 +70,7 @@ up_postgres() {
down_postgres() {
docker kill postgres
docker rm postgres
docker rm -v postgres
}
gen_migrate() {