mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-14 15:51:37 +00:00
4a7fb9c045
* Support auto-upgrading accounts DB * Auto-upgrade device DB deltas * Support up/downgrading from cmd/goose * Linting * Create tables then do migrations then prepare statements To avoid failing due to some things not existing * Linting
34 lines
745 B
Go
34 lines
745 B
Go
package deltas
|
|
|
|
import (
|
|
"database/sql"
|
|
"fmt"
|
|
|
|
"github.com/matrix-org/dendrite/internal/sqlutil"
|
|
"github.com/pressly/goose"
|
|
)
|
|
|
|
func LoadFromGoose() {
|
|
goose.AddMigration(UpIsActive, DownIsActive)
|
|
}
|
|
|
|
func LoadIsActive(m *sqlutil.Migrations) {
|
|
m.AddMigration(UpIsActive, DownIsActive)
|
|
}
|
|
|
|
func UpIsActive(tx *sql.Tx) error {
|
|
_, err := tx.Exec("ALTER TABLE account_accounts ADD COLUMN IF NOT EXISTS is_deactivated BOOLEAN DEFAULT FALSE;")
|
|
if err != nil {
|
|
return fmt.Errorf("failed to execute upgrade: %w", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func DownIsActive(tx *sql.Tx) error {
|
|
_, err := tx.Exec("ALTER TABLE account_accounts DROP COLUMN is_deactivated;")
|
|
if err != nil {
|
|
return fmt.Errorf("failed to execute downgrade: %w", err)
|
|
}
|
|
return nil
|
|
}
|