default values for PersistList on SQLite - YesodComparing Haskell's Snap and Yesod web frameworksExceptions in YesodMongoDB Example for Yesod / Persistentyesod persistent: get Entity value within hamletYesod migrating custom data typesPersistMap in Yesod?Yesod Persistent: SQLite table with id row onlyError with Persistent syntax using MySQL and YesodYesod CSS luciusYesod: Passing the current user to a form

What's /System/Volumes/Data?

Was this pillow joke on Friends intentional or a mistake?

How to avoid using System.String with Rfc2898DeriveBytes in C#

Defense against attacks using dictionaries

Is there a known non-euclidean geometry where two concentric circles of different radii can intersect? (as in the novel "The Universe Between")

How can I support the recycling, but not the new production of aluminum?

Is a butterfly one or two animals?

What can I do to keep a threaded bolt from falling out of its slot?

Potential new partner angry about first collaboration - how to answer email to close up this encounter in a graceful manner

Can pay be witheld for hours cleaning up after closing time?

Why don't we use Cavea-B

What happens when I copy a legendary creature with Rite of Replication?

Does Swashbuckler's Fancy Footwork apply if the attack was made with Booming Blade?

Is "stainless" a bulk or a surface property of stainless steel?

Is there such a thing as too inconvenient?

Is it appropriate for a prospective landlord to ask me for my credit report?

How to create a summation symbol with a vertical bar?

What is the evidence on the danger of feeding whole blueberries and grapes to infants and toddlers?

What is the difference between a premise and an assumption in logic?

To "hit home" in German

Can we save the word "unique"?

Bug or undocumented behaviour in Intersection

In an emergency, how do I find and share my position?

Why don't politicians push for fossil fuel reduction by pointing out their scarcity?



default values for PersistList on SQLite - Yesod


Comparing Haskell's Snap and Yesod web frameworksExceptions in YesodMongoDB Example for Yesod / Persistentyesod persistent: get Entity value within hamletYesod migrating custom data typesPersistMap in Yesod?Yesod Persistent: SQLite table with id row onlyError with Persistent syntax using MySQL and YesodYesod CSS luciusYesod: Passing the current user to a form






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I would like to add a PersistList value into a user entity with a default value. My model file looks like this. And Models.hs file:



User
ident Text
password Text Maybe
UniqueUser ident
perms [Privileges] default=[PrvDemoOne]
deriving Typeable



data Privileges =
PrvDemoOne -- ^ what can be demo one...
| PrvDemoTwo -- ^ what can be demo two...
deriving (Show,Read,Eq)

derivePersistField "Privileges"


the code compiles but when a new user is added into the table save an empty array instead of an array with the default value.




1|google-uid:223344555661778819911||[]




The question is how I could save the column with the default value?










share|improve this question
































    0















    I would like to add a PersistList value into a user entity with a default value. My model file looks like this. And Models.hs file:



    User
    ident Text
    password Text Maybe
    UniqueUser ident
    perms [Privileges] default=[PrvDemoOne]
    deriving Typeable



    data Privileges =
    PrvDemoOne -- ^ what can be demo one...
    | PrvDemoTwo -- ^ what can be demo two...
    deriving (Show,Read,Eq)

    derivePersistField "Privileges"


    the code compiles but when a new user is added into the table save an empty array instead of an array with the default value.




    1|google-uid:223344555661778819911||[]




    The question is how I could save the column with the default value?










    share|improve this question




























      0












      0








      0








      I would like to add a PersistList value into a user entity with a default value. My model file looks like this. And Models.hs file:



      User
      ident Text
      password Text Maybe
      UniqueUser ident
      perms [Privileges] default=[PrvDemoOne]
      deriving Typeable



      data Privileges =
      PrvDemoOne -- ^ what can be demo one...
      | PrvDemoTwo -- ^ what can be demo two...
      deriving (Show,Read,Eq)

      derivePersistField "Privileges"


      the code compiles but when a new user is added into the table save an empty array instead of an array with the default value.




      1|google-uid:223344555661778819911||[]




      The question is how I could save the column with the default value?










      share|improve this question
















      I would like to add a PersistList value into a user entity with a default value. My model file looks like this. And Models.hs file:



      User
      ident Text
      password Text Maybe
      UniqueUser ident
      perms [Privileges] default=[PrvDemoOne]
      deriving Typeable



      data Privileges =
      PrvDemoOne -- ^ what can be demo one...
      | PrvDemoTwo -- ^ what can be demo two...
      deriving (Show,Read,Eq)

      derivePersistField "Privileges"


      the code compiles but when a new user is added into the table save an empty array instead of an array with the default value.




      1|google-uid:223344555661778819911||[]




      The question is how I could save the column with the default value?







      haskell yesod persistent






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited May 5 at 9:49









      recnac

      3,1976 gold badges9 silver badges38 bronze badges




      3,1976 gold badges9 silver badges38 bronze badges










      asked Mar 27 at 15:25









      oriajoriaj

      4138 silver badges26 bronze badges




      4138 silver badges26 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          0














          Have you read this? The value of the default field doesn't really have anything to do with the Haskell side per-se, it's being passed to set the "default value" description your DBMS. In this case [PrvDemoOne] is being passed directly to SQLite, which will interpret it as gibberish (because it's not a valid SQL expression) so this is either ignored or (what seems to be the case here) treated as if you hadn't set a default at all.



          If you want a "Haskell side" default value you should just create a function for that, i.e. something like



          defaultUser :: Text -> Maybe Text -> User
          defaultUser i maybePw = User ident = i, password = maybePw, perms = [PrvDemoOne]


          If you want a SQL side default you need to write the corresponding SQL expression for the value you're trying to represent.



          On a non-Haskell related note: the 'normal' way to represent lists (or sets in this case, rather!) in SQL is via relations, so you'd normally have a many-to-many relationship mapping users to their privileges instead of a list field.






          share|improve this answer
























            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55380861%2fdefault-values-for-persistlist-on-sqlite-yesod%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Have you read this? The value of the default field doesn't really have anything to do with the Haskell side per-se, it's being passed to set the "default value" description your DBMS. In this case [PrvDemoOne] is being passed directly to SQLite, which will interpret it as gibberish (because it's not a valid SQL expression) so this is either ignored or (what seems to be the case here) treated as if you hadn't set a default at all.



            If you want a "Haskell side" default value you should just create a function for that, i.e. something like



            defaultUser :: Text -> Maybe Text -> User
            defaultUser i maybePw = User ident = i, password = maybePw, perms = [PrvDemoOne]


            If you want a SQL side default you need to write the corresponding SQL expression for the value you're trying to represent.



            On a non-Haskell related note: the 'normal' way to represent lists (or sets in this case, rather!) in SQL is via relations, so you'd normally have a many-to-many relationship mapping users to their privileges instead of a list field.






            share|improve this answer





























              0














              Have you read this? The value of the default field doesn't really have anything to do with the Haskell side per-se, it's being passed to set the "default value" description your DBMS. In this case [PrvDemoOne] is being passed directly to SQLite, which will interpret it as gibberish (because it's not a valid SQL expression) so this is either ignored or (what seems to be the case here) treated as if you hadn't set a default at all.



              If you want a "Haskell side" default value you should just create a function for that, i.e. something like



              defaultUser :: Text -> Maybe Text -> User
              defaultUser i maybePw = User ident = i, password = maybePw, perms = [PrvDemoOne]


              If you want a SQL side default you need to write the corresponding SQL expression for the value you're trying to represent.



              On a non-Haskell related note: the 'normal' way to represent lists (or sets in this case, rather!) in SQL is via relations, so you'd normally have a many-to-many relationship mapping users to their privileges instead of a list field.






              share|improve this answer



























                0












                0








                0







                Have you read this? The value of the default field doesn't really have anything to do with the Haskell side per-se, it's being passed to set the "default value" description your DBMS. In this case [PrvDemoOne] is being passed directly to SQLite, which will interpret it as gibberish (because it's not a valid SQL expression) so this is either ignored or (what seems to be the case here) treated as if you hadn't set a default at all.



                If you want a "Haskell side" default value you should just create a function for that, i.e. something like



                defaultUser :: Text -> Maybe Text -> User
                defaultUser i maybePw = User ident = i, password = maybePw, perms = [PrvDemoOne]


                If you want a SQL side default you need to write the corresponding SQL expression for the value you're trying to represent.



                On a non-Haskell related note: the 'normal' way to represent lists (or sets in this case, rather!) in SQL is via relations, so you'd normally have a many-to-many relationship mapping users to their privileges instead of a list field.






                share|improve this answer













                Have you read this? The value of the default field doesn't really have anything to do with the Haskell side per-se, it's being passed to set the "default value" description your DBMS. In this case [PrvDemoOne] is being passed directly to SQLite, which will interpret it as gibberish (because it's not a valid SQL expression) so this is either ignored or (what seems to be the case here) treated as if you hadn't set a default at all.



                If you want a "Haskell side" default value you should just create a function for that, i.e. something like



                defaultUser :: Text -> Maybe Text -> User
                defaultUser i maybePw = User ident = i, password = maybePw, perms = [PrvDemoOne]


                If you want a SQL side default you need to write the corresponding SQL expression for the value you're trying to represent.



                On a non-Haskell related note: the 'normal' way to represent lists (or sets in this case, rather!) in SQL is via relations, so you'd normally have a many-to-many relationship mapping users to their privileges instead of a list field.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 27 at 16:07









                CubicCubic

                11.7k3 gold badges34 silver badges76 bronze badges




                11.7k3 gold badges34 silver badges76 bronze badges





















                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55380861%2fdefault-values-for-persistlist-on-sqlite-yesod%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript