mirror of
https://github.com/writefreely/writefreely
synced 2024-11-10 11:24:13 +00:00
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 {
|
||||
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 ,
|
||||
owner_id ` + db.typeInt() + ` NOT NULL ,
|
||||
max_uses ` + db.typeSmallInt() + ` NULL ,
|
||||
|
@ -26,7 +26,7 @@ func supportUserInvites(db *datastore) error {
|
|||
return err
|
||||
}
|
||||
|
||||
_, err = t.Exec(`CREATE TABLE IF NOT EXISTS usersinvited (
|
||||
_, err = t.Exec(`CREATE TABLE usersinvited (
|
||||
invite_id ` + db.typeChar(6) + ` NOT NULL ,
|
||||
user_id ` + db.typeInt() + ` NOT NULL ,
|
||||
PRIMARY KEY (invite_id, user_id)
|
||||
|
|
Loading…
Reference in a new issue