diff --git a/README.md b/README.md index e790273..835abba 100755 --- a/README.md +++ b/README.md @@ -181,6 +181,9 @@ Migrations/0.0.7-0.1.0.0/Migration.hs` ### 0.1.7.2-0.1.8.0 * No database changes, just new dependencies to install. +### 0.1.8.8-0.1.9.0 +* You can drop the table `activator` from the database. It is no longer needed. + ## Acknowledgements: * This software uses the web Framework "Yesod" by Michael Snoyman. See more at: diff --git a/config/models b/config/models index 90034ee..5904ae4 100755 --- a/config/models +++ b/config/models @@ -26,10 +26,10 @@ User active Bool default=True UniqueUser name deriving Typeable Eq Show -Activator - token Text - user User - deriving Eq Show +-- Activator +-- token Text +-- user User +-- deriving Eq Show Token token ByteString kind Text diff --git a/eidolon.cabal b/eidolon.cabal index 7639b3d..8cd7dd6 100755 --- a/eidolon.cabal +++ b/eidolon.cabal @@ -1,5 +1,5 @@ name: eidolon -version: 0.1.8.8 +version: 0.1.9.0 synopsis: Image gallery in Yesod homepage: https://eidolon.nek0.eu license: AGPL-3