Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3966108
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T03:33:22+00:00 2026-05-20T03:33:22+00:00

so i have a serialized column :dimensions, and in my migration, i would like

  • 0

so i have a serialized column :dimensions, and in my migration, i would like to set the field to be a default hash.

i have tried…

create_table :shipping_profiles do |t|
      t.string      :dimensions_in, :default => {:width => 0, :height => 0, :depth => 0}

and just

t.string :dimensions_in, :default => Hash.new()

but the fields end up null. how can i set a default serialized object for this field on creation, or at least make sure my serialize attribute is always a hash?

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T03:33:22+00:00Added an answer on May 20, 2026 at 3:33 am

    When Rails serializes a hash to save in the db, all it does is convert it to YAML so that it can be stored as a string. To get this to work in the migration, all you need to do is convert the hash to yaml…

    t.string :dimensions_in, :default => {:width => 0, :height => 0, :depth => 0}.to_yaml
    

    Or, alternatively, set it in the model after initialization…

    class ShippingProfile < ActiveRecord::Base
    
      after_initialize :set_default_dimensions
    
      private
    
        def set_default_dimensions
          self.dimensions_in ||= {:width => 0, :height => 0, :depth => 0}
        end
    
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a db column which is a serialized Hash : class Foo <
I have an options column which is serialized. I plan to store user preferences
I have an entity which is constructed from a string and can be serialized
I have a Moose class that i would like to store using Apache::Session::File. However,
I have column in mysql DB which contains serialized data (used PHP JSON encode
I have a model that uses a serialized column: class Form < ActiveRecord::Base serialize
I have serialized an object into a XML column in my SQL Server 2008
So, I have serialized data within the uc_orders table. This data has several parameters
I've got a few files that have been serialized by directly writing C++ struct
I have the following serialized PHP array stored in a mySQL database: a:2:{i:2070;s:4:0.00;i:1901;s:4:1.00;} Now,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.