change to mconcat
This commit is contained in:
parent
a15c075d77
commit
d7c1a9de89
3 changed files with 3 additions and 3 deletions
|
@ -49,7 +49,7 @@ import Model.User
|
||||||
|
|
||||||
|
|
||||||
initToken :: PGS.Query
|
initToken :: PGS.Query
|
||||||
initToken = foldl (<>) "" $
|
initToken = mconcat
|
||||||
[ "create table if not exists \"token\" ("
|
[ "create table if not exists \"token\" ("
|
||||||
, "token_string bytea not null primary key,"
|
, "token_string bytea not null primary key,"
|
||||||
, "token_user integer references \"user\"(user_id) not null,"
|
, "token_user integer references \"user\"(user_id) not null,"
|
||||||
|
|
|
@ -31,7 +31,7 @@ import Opaleye.Constant as C
|
||||||
import Types
|
import Types
|
||||||
|
|
||||||
initProduct :: PGS.Query
|
initProduct :: PGS.Query
|
||||||
initProduct = foldl (<>) "" $
|
initProduct = mconcat
|
||||||
[ "create table if not exists \"product\" ("
|
[ "create table if not exists \"product\" ("
|
||||||
, "product_id serial primary key,"
|
, "product_id serial primary key,"
|
||||||
, "product_ident varchar(128) not null,"
|
, "product_ident varchar(128) not null,"
|
||||||
|
|
|
@ -34,7 +34,7 @@ import Types.Auth
|
||||||
import Types.Reader
|
import Types.Reader
|
||||||
|
|
||||||
initUser :: PGS.Query
|
initUser :: PGS.Query
|
||||||
initUser = foldl (<>) "" $
|
initUser = mconcat
|
||||||
[ "create table if not exists \"user\" ("
|
[ "create table if not exists \"user\" ("
|
||||||
, "user_id serial primary key,"
|
, "user_id serial primary key,"
|
||||||
, "user_ident varchar(128) not null,"
|
, "user_ident varchar(128) not null,"
|
||||||
|
|
Loading…
Reference in a new issue