From: Shaun McDonald Date: Tue, 4 Nov 2008 13:54:45 +0000 (+0000) Subject: Minor fix (integer => bigint) to one of the migrations so that they will run fully... X-Git-Tag: live~7605^2~225 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/0ca779e5bd2b53e83331640d21945b9fb06b2c8c?hp=183ffc78648938ca079f7ea5f899d3e71e829333 Minor fix (integer => bigint) to one of the migrations so that they will run fully again. --- diff --git a/db/migrate/001_create_osm_db.rb b/db/migrate/001_create_osm_db.rb index 2c80dd8ad..0117c853e 100644 --- a/db/migrate/001_create_osm_db.rb +++ b/db/migrate/001_create_osm_db.rb @@ -110,7 +110,7 @@ class CreateOsmDb < ActiveRecord::Migration add_primary_key "gpx_file_tags", ["id"] add_index "gpx_file_tags", ["gpx_id"], :name => "gpx_file_tags_gpxid_idx" - change_column "gpx_file_tags", "id", :integer, :limit => 20, :null => false, :options => "AUTO_INCREMENT" + change_column "gpx_file_tags", "id", :bigint, :limit => 20, :null => false, :options => "AUTO_INCREMENT" create_table "gpx_files", myisam_table do |t| t.column "id", :bigint, :limit => 64, :null => false