]> gitweb.michael.orlitzky.com - dead/htsn-import.git/commitdiff
Fix the TSN.Team unique constraint name.
authorMichael Orlitzky <michael@orlitzky.com>
Sat, 5 Jul 2014 23:26:52 +0000 (19:26 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Sat, 5 Jul 2014 23:26:52 +0000 (19:26 -0400)
src/TSN/Team.hs

index 36d58ca44f7747732ea9782818828aa7cd097777..97e36475e59c14ea93c64a819e5b275b121bdd87 100644 (file)
@@ -4,10 +4,10 @@
 {-# LANGUAGE TemplateHaskell #-}
 {-# LANGUAGE TypeFamilies #-}
 
--- | Two different XML types have a notion of teams: "TSN.XML.Odds"
---   and "TSN.XML.JFile". And in fact those two types agree on the
---   team id, abbreviation, and name -- at least for the database
---   representation.
+-- | (At least) two different XML types have a notion of teams:
+--   "TSN.XML.Odds" and "TSN.XML.JFile". And in fact those two types
+--   agree on the team id, abbreviation, and name -- at least for the
+--   database representation.
 --
 --   This module contains a data type for the common database
 --   representation.
@@ -50,7 +50,7 @@ mkPersist defaultCodegenConfig [groundhog|
   constructors:
     - name: Team
       uniques:
-        - name: unique_odds_games_team
+        - name: unique_team
           type: constraint
           fields: [team_id]
 |]