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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T03:10:50+00:00 2026-06-03T03:10:50+00:00

In rails migration. How do I change a string type column to a bigint?

  • 0

In rails migration. How do I change a string type column to a bigint?

I have:

t.change :ip_number_from, :integer, :limit => 8

I get:

PG::Error: ERROR:  column "ip_number_from" cannot be cast to type bigint

I even tried with the 2 alternatives:

change_column :ip_to_countries, :ip_number_from, :integer, :limit => 8
change_column :ip_to_countries, :ip_number_from, :bigint

Still the same error.

  • 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-03T03:10:50+00:00Added an answer on June 3, 2026 at 3:10 am

    Postgres is telling you that there is existing data in that column which it doesn’t know how to convert, so it needs an ALTER statement which supplies a USING clause for the column to specify how to cast existing values.

    Unfortunately, you’re going to need to drop down the database-specific code to accomplish this, or use something similar to the solution suggested here:

    http://webjazz.blogspot.co.uk/2010/03/how-to-alter-columns-in-postgresql.html

    Edit: Here’s how you might do it directly in SQL in your migration:

    execute <<-SQL
      ALTER TABLE ip_to_countries
      ALTER COLUMN ip_number_from TYPE bigint USING ip_number_from::bigint
    SQL
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I recently added a :title column using Rails migration: class AddTitleToMicroposts < ActiveRecord::Migration def
I have a column with the type of Varchar in my Postgres database which
I have the problem, that I have an migration in Rails that sets up
I am using Jruby and rails 2.2.2. My problem is I have a migration
A Rails migration to turn a deleted_at time column to a datetime column failed.
I have a model List with an attribute called description of type string. Not
I'm currently running a Rails migration where I am adding a datatype specific to
I generated a rails 3.2 migration with an empty down function, because the migration
There are two ways to write a polymorphic migration in Rails. Generally, I've done
I have a non-rails application that I want to use rails active-record migrations with.

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.