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

  • SEARCH
  • Home
  • 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
  • 0 Views
  • 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 entity which is constructed from a string and can be serialized
I have a model that uses a serialized column: class Form < ActiveRecord::Base serialize
I have a pretty sizeable object graph that I have serialized to a file
I have an object graph serialized to xaml. A rough sample of what it
I have an object that is mapped to a cookie as a serialized base-64
I have a row of IDs in a database that has been serialized. What
I have an application that I'm converting to Symfony/Doctrine. It currently stores a serialized
I have a column of type object in a model. But if I load
I have this serialized array but I have no idea how to get the

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.