]> git.openstreetmap.org Git - rails.git/blobdiff - db/migrate/024_order_relation_members.rb
Remove cascading deletes, add another foreign key, and switch index around.
[rails.git] / db / migrate / 024_order_relation_members.rb
index 5500edfcfbf4ac42e9a35e9d754dfdc049a96a47..e773da3cd0606c37cd8cb54188a85fe4a3e5d2cd 100644 (file)
@@ -1,16 +1,18 @@
-class OrderRelationMembers < ActiveRecord::Migration
+require "migrate"
+
+class OrderRelationMembers < ActiveRecord::Migration[5.0]
   def self.up
     # add sequence column. rails won't let us define an ordering here,
     # as defaults must be constant.
     add_column(:relation_members, :sequence_id, :integer,
                :default => 0, :null => false)
 
-    # update the sequence column with default (partial) ordering by 
+    # update the sequence column with default (partial) ordering by
     # element ID. the sequence ID is a smaller int type, so we can't
     # just copy the member_id.
     execute("update relation_members set sequence_id = mod(member_id, 16384)")
 
-    # need to update the primary key to include the sequence number, 
+    # need to update the primary key to include the sequence number,
     # otherwise the primary key will barf when we have repeated members.
     # mysql barfs on this anyway, so we need a single command. this may
     # not work in postgres... needs testing.