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 9101527
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T01:09:14+00:00 2026-06-17T01:09:14+00:00

I have user model and user model has_one profile model. Also I have user.phone

  • 0

I have user model and user model has_one profile model.
Also I have user.phone and user.profile.phone but I want to remove user.phone and I will use only user.profile.phone.

Before I remove the user.phone,I wanna copy user.phone to user.profile.phone if user.phone is not blank.Then I will remove user.phone

For instance:

user.phone = 123
user.profile.phone = 234

After migration:

user.phone will be removed
user.profile.phone = 123 - 234

What is the appropriate migration for this purpose?

  • 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-06-17T01:09:15+00:00Added an answer on June 17, 2026 at 1:09 am

    try this

    class YourMigration < ActiveRecord::Migration
     def self.up
       User.find_each do |user|
     user.profile.update_attributes(:phone => user.phone) unless user.phone.blank?
       end
       remove_column :users, :phone
     end
    
     def self.down
      add_column :users, :phone, :string
     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 profile model and a user has_one profile. Also, the profile is
I have a user model and a profile model. user has_one :profile profile belongs_to
I have a user model that has_one profile, and the profile belongs to the
I have a user model which has_one profile. The user model has a name
I have a user model (sql table) that has_one : profile. profiles have user_id
I have a profile model, and a user has_one profile. Here's my route: resources
I have two models: User (email:string) Profile (name:string) class User < ActiveRecord::Base has_one :profile
I have a User.rb model and a Donation.rb model. User.rb has_one :donation , and
I have an Account model with the following : has_one :primary_user, :class_name => User,
I have User and Teacher models. Teacher belongs_to User and User has_one Teacher. Also

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.