Rolling back v1 migration change as per PR feedback. T710
This commit is contained in:
parent
37f0c281ab
commit
ee1473aa56
1 changed files with 2 additions and 2 deletions
|
@ -12,7 +12,7 @@ package migrations
|
||||||
|
|
||||||
func supportUserInvites(db *datastore) error {
|
func supportUserInvites(db *datastore) error {
|
||||||
t, err := db.Begin()
|
t, err := db.Begin()
|
||||||
_, err = t.Exec(`CREATE TABLE IF NOT EXISTS userinvites (
|
_, err = t.Exec(`CREATE TABLE userinvites (
|
||||||
id ` + db.typeChar(6) + ` NOT NULL ,
|
id ` + db.typeChar(6) + ` NOT NULL ,
|
||||||
owner_id ` + db.typeInt() + ` NOT NULL ,
|
owner_id ` + db.typeInt() + ` NOT NULL ,
|
||||||
max_uses ` + db.typeSmallInt() + ` NULL ,
|
max_uses ` + db.typeSmallInt() + ` NULL ,
|
||||||
|
@ -26,7 +26,7 @@ func supportUserInvites(db *datastore) error {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
_, err = t.Exec(`CREATE TABLE IF NOT EXISTS usersinvited (
|
_, err = t.Exec(`CREATE TABLE usersinvited (
|
||||||
invite_id ` + db.typeChar(6) + ` NOT NULL ,
|
invite_id ` + db.typeChar(6) + ` NOT NULL ,
|
||||||
user_id ` + db.typeInt() + ` NOT NULL ,
|
user_id ` + db.typeInt() + ` NOT NULL ,
|
||||||
PRIMARY KEY (invite_id, user_id)
|
PRIMARY KEY (invite_id, user_id)
|
||||||
|
|
Loading…
Add table
Reference in a new issue