2019-05-16 19:14:32 +02:00
|
|
|
package upgrades
|
|
|
|
|
|
|
|
import (
|
|
|
|
"database/sql"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2019-08-25 16:25:19 +02:00
|
|
|
upgrades[1] = upgrade{"Add ON DELETE CASCADE to message table", func(tx *sql.Tx, ctx context) error {
|
|
|
|
if ctx.dialect == SQLite {
|
2019-05-16 19:14:32 +02:00
|
|
|
// SQLite doesn't support constraint updates, but it isn't that careful with constraints anyway.
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
_, err := tx.Exec("ALTER TABLE message DROP CONSTRAINT message_chat_jid_fkey")
|
|
|
|
if err != nil {
|
2020-04-02 20:11:38 +02:00
|
|
|
return nil
|
2019-05-16 19:14:32 +02:00
|
|
|
}
|
|
|
|
_, err = tx.Exec(`ALTER TABLE message ADD CONSTRAINT message_chat_jid_fkey
|
|
|
|
FOREIGN KEY (chat_jid, chat_receiver) REFERENCES portal(jid, receiver)
|
|
|
|
ON DELETE CASCADE`)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}}
|
|
|
|
}
|