From dbf0c5a2cb9986fb3963faac9b1f38d58c3f7a3b Mon Sep 17 00:00:00 2001 From: fr33domlover Date: Sat, 30 Apr 2016 20:15:48 +0000 Subject: [PATCH] Remove IRC channel and ML data from DB --- config/models | 6 ------ src/Vervis/Form/Repo.hs | 2 -- 2 files changed, 8 deletions(-) diff --git a/config/models b/config/models index cef0f56..842ee4a 100644 --- a/config/models +++ b/config/models @@ -12,10 +12,6 @@ -- with this software. If not, see -- . -IrcChannel - network Text - name Text - Sharer ident Text --CI name Text Maybe @@ -57,8 +53,6 @@ Repo sharer SharerId project ProjectId Maybe desc Text Maybe - irc IrcChannelId Maybe - ml Text Maybe mainBranch Text default='master' UniqueRepo ident sharer diff --git a/src/Vervis/Form/Repo.hs b/src/Vervis/Form/Repo.hs index 9d552e6..1d49261 100644 --- a/src/Vervis/Form/Repo.hs +++ b/src/Vervis/Form/Repo.hs @@ -27,8 +27,6 @@ newRepoAForm sid = Repo <*> pure sid <*> pure Nothing <*> aopt textField "Description" Nothing - <*> pure Nothing - <*> pure Nothing <*> pure "master" newRepoForm :: SharerId -> Form Repo