2019-08-28 12:37:45 -07:00
|
|
|
/*
|
2022-11-10 23:49:16 -05:00
|
|
|
* Copyright © 2019 Musing Studio LLC.
|
2019-08-28 12:37:45 -07:00
|
|
|
*
|
|
|
|
* This file is part of WriteFreely.
|
|
|
|
*
|
|
|
|
* WriteFreely is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, included
|
|
|
|
* in the LICENSE file in this source code package.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package migrations
|
|
|
|
|
2019-10-25 12:04:24 -07:00
|
|
|
func supportUserStatus(db *datastore) error {
|
2019-08-28 12:37:45 -07:00
|
|
|
t, err := db.Begin()
|
2021-06-09 14:25:55 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-08-28 12:37:45 -07:00
|
|
|
|
2019-10-25 12:04:24 -07:00
|
|
|
_, err = t.Exec(`ALTER TABLE users ADD COLUMN status ` + db.typeInt() + ` DEFAULT '0' NOT NULL`)
|
2019-08-28 12:37:45 -07:00
|
|
|
if err != nil {
|
|
|
|
t.Rollback()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = t.Commit()
|
|
|
|
if err != nil {
|
|
|
|
t.Rollback()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|