X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/e660e609661edadc1ed5ad49d6e83e936b2f91cd..c3e2e6462f293596aef5d5de18b0a173edc046c7:/db/migrate/007_add_relations.rb diff --git a/db/migrate/007_add_relations.rb b/db/migrate/007_add_relations.rb index 41d62928f..4a0f74c52 100644 --- a/db/migrate/007_add_relations.rb +++ b/db/migrate/007_add_relations.rb @@ -9,10 +9,10 @@ class AddRelations < ActiveRecord::Migration # differences: # way: only nodes / relation: any kind of member # way: ordered sequence of nodes / relation: free-form "role" string - create_table "current_relation_members", innodb_table do |t| - t.column "id", :bigint, :limit => 64, :null => false + create_table "current_relation_members", :id => false do |t| + t.column "id", :bigint, :null => false t.column "member_type", :nwr_enum, :null => false - t.column "member_id", :bigint, :limit => 11, :null => false + t.column "member_id", :bigint, :null => false t.column "member_role", :string end @@ -20,57 +20,54 @@ class AddRelations < ActiveRecord::Migration add_index "current_relation_members", ["member_type", "member_id"], :name => "current_relation_members_member_idx" # the following is obsolete given the primary key, is it not? # add_index "current_relation_members", ["id"], :name => "current_relation_members_id_idx" - create_table "current_relation_tags", myisam_table do |t| - t.column "id", :bigint, :limit => 64, :null => false + create_table "current_relation_tags", :id => false do |t| + t.column "id", :bigint, :null => false t.column "k", :string, :default => "", :null => false t.column "v", :string, :default => "", :null => false end add_index "current_relation_tags", ["id"], :name => "current_relation_tags_id_idx" - add_fulltext_index "current_relation_tags", "v" + add_index "current_relation_tags", "v", :name => "current_relation_tags_v_idx" - create_table "current_relations", innodb_table do |t| - t.column "id", :bigint_pk_64, :null => false - t.column "user_id", :bigint, :limit => 20, :null => false + create_table "current_relations", :id => false do |t| + t.column "id", :bigserial, :primary_key => true, :null => false + t.column "user_id", :bigint, :null => false t.column "timestamp", :datetime, :null => false - t.column "visible", :boolean, :null => false + t.column "visible", :boolean, :null => false end - create_table "relation_members", myisam_table do |t| - t.column "id", :bigint, :limit => 64, :default => 0, :null => false + create_table "relation_members", :id => false do |t| + t.column "id", :bigint, :default => 0, :null => false t.column "member_type", :nwr_enum, :null => false - t.column "member_id", :bigint, :limit => 11, :null => false + t.column "member_id", :bigint, :null => false t.column "member_role", :string - t.column "version", :bigint, :limit => 20, :default => 0, :null => false + t.column "version", :bigint, :default => 0, :null => false end add_primary_key "relation_members", ["id", "version", "member_type", "member_id", "member_role"] add_index "relation_members", ["member_type", "member_id"], :name => "relation_members_member_idx" - create_table "relation_tags", myisam_table do |t| - t.column "id", :bigint, :limit => 64, :default => 0, :null => false + create_table "relation_tags", :id => false do |t| + t.column "id", :bigint, :default => 0, :null => false t.column "k", :string, :null => false, :default => "" t.column "v", :string, :null => false, :default => "" - t.column "version", :bigint, :limit => 20, :null => false + t.column "version", :bigint, :null => false end add_index "relation_tags", ["id", "version"], :name => "relation_tags_id_version_idx" - create_table "relations", myisam_table do |t| - t.column "id", :bigint, :limit => 64, :null => false, :default => 0 - t.column "user_id", :bigint, :limit => 20, :null => false - t.column "timestamp", :datetime, :null => false - t.column "version", :bigint, :limit => 20, :null => false - t.column "visible", :boolean, :null => false, :default => true + create_table "relations", :id => false do |t| + t.column "id", :bigint, :null => false, :default => 0 + t.column "user_id", :bigint, :null => false + t.column "timestamp", :datetime, :null => false + t.column "version", :bigint, :null => false + t.column "visible", :boolean, :null => false, :default => true end add_primary_key "relations", ["id", "version"] add_index "relations", ["timestamp"], :name => "relations_timestamp_idx" - - change_column "relations", "version", :bigint_auto_20 end - def self.down drop_table :relations drop_table :current_relations