1
0
Fork 0
mirror of https://code.sup39.dev/repos/Wqawg synced 2024-12-29 00:44:52 +09:00

Rename project field in Project Role assignment tables, it had the wrong name

This commit is contained in:
fr33domlover 2019-01-26 12:56:15 +00:00
parent 4875f0b9f7
commit da6d8c008e
2 changed files with 12 additions and 8 deletions

View file

@ -1,6 +1,6 @@
-- This file is part of Vervis. -- This file is part of Vervis.
-- --
-- Written in 2016, 2018 by fr33domlover <fr33domlover@riseup.net>. -- Written in 2016, 2018, 2019 by fr33domlover <fr33domlover@riseup.net>.
-- --
-- ♡ Copying is an act of love. Please copy, reuse and share. -- ♡ Copying is an act of love. Please copy, reuse and share.
-- --
@ -124,16 +124,16 @@ ProjectCollab
UniqueProjectCollab project person UniqueProjectCollab project person
ProjectCollabAnon ProjectCollabAnon
repo ProjectId project ProjectId
role ProjectRoleId role ProjectRoleId
UniqueProjectCollabAnon repo UniqueProjectCollabAnon project
ProjectCollabUser ProjectCollabUser
repo ProjectId project ProjectId
role ProjectRoleId role ProjectRoleId
UniqueProjectCollabUser repo UniqueProjectCollabUser project
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- Projects -- Projects

View file

@ -1,6 +1,6 @@
{- This file is part of Vervis. {- This file is part of Vervis.
- -
- Written in 2016, 2018 by fr33domlover <fr33domlover@riseup.net>. - Written in 2016, 2018, 2019 by fr33domlover <fr33domlover@riseup.net>.
- -
- Copying is an act of love. Please copy, reuse and share. - Copying is an act of love. Please copy, reuse and share.
- -
@ -128,6 +128,10 @@ changes =
, addFieldPrimRequired "Person" defaultTime "resetPassKeyCreated" , addFieldPrimRequired "Person" defaultTime "resetPassKeyCreated"
-- 22 -- 22
, addUnique "Person" $ Unique "UniquePersonEmail" ["email"] , addUnique "Person" $ Unique "UniquePersonEmail" ["email"]
-- 23
, renameField "ProjectCollabAnon" "repo" "project"
-- 24
, renameField "ProjectCollabUser" "repo" "project"
] ]
migrateDB :: MonadIO m => ReaderT SqlBackend m (Either Text (Int, Int)) migrateDB :: MonadIO m => ReaderT SqlBackend m (Either Text (Int, Int))