]> git.openstreetmap.org Git - rails.git/blobdiff - db/migrate/053_add_map_bug_tables.rb
Switch to using the zeitwork autoloader
[rails.git] / db / migrate / 053_add_map_bug_tables.rb
index 6851a20b4d4f8c5e8efaa0235c81d961694510a4..6ad3af0eb66a41de4f40d869dcbe710134d7e6c6 100644 (file)
@@ -1,16 +1,14 @@
-require 'migrate'
-
-class AddMapBugTables < ActiveRecord::Migration
+class AddMapBugTables < ActiveRecord::Migration[4.2]
   def self.up
-    create_enumeration :map_bug_status_enum, ["open", "closed", "hidden"]
+    create_enumeration :map_bug_status_enum, %w[open closed hidden]
 
     create_table :map_bugs do |t|
-      t.integer :latitude, :null => false 
-      t.integer :longitude, :null => false 
+      t.integer :latitude, :null => false
+      t.integer :longitude, :null => false
       t.column :tile, :bigint, :null => false
       t.datetime :last_changed, :null => false
-      t.datetime :date_created, :null => false 
-      t.string :nearby_place 
+      t.datetime :date_created, :null => false
+      t.string :nearby_place
       t.string :text
       t.column :status, :map_bug_status_enum, :null => false
     end