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

                    SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

                    은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현