Skip to content

Instantly share code, notes, and snippets.

@catalogchoice
Created May 19, 2011 17:05
Show Gist options
  • Save catalogchoice/981233 to your computer and use it in GitHub Desktop.
Save catalogchoice/981233 to your computer and use it in GitHub Desktop.
ruby on rails BIGINT
def self.up
create_table(:people) do |t|
t.integer :number_of_facebook_friends
end
change_column :people, :number_of_facebook_friends, :bigint
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment