]> git.openstreetmap.org Git - rails.git/blobdiff - db/migrate/011_create_node_tags.rb
fixes syntax error
[rails.git] / db / migrate / 011_create_node_tags.rb
index 6f84043eef4149c78ccef5d10ccd8c34aa957f92..316602d69482266400bdba2cfba11fe792724366 100644 (file)
@@ -1,8 +1,8 @@
 class CreateNodeTags < ActiveRecord::Migration
   def self.up
     create_table "current_node_tags", myisam_table do |t|
-      t.column "id",          :bigint, :limit => 64                 :null => false
-      t.column "sequence_id", :bigint, :limit => 11                 :null => false
+      t.column "id",          :bigint, :limit => 64,                 :null => false
+      t.column "sequence_id", :bigint, :limit => 11,                 :null => false
       t.column "k",           :string,              :default => "", :null => false
       t.column "v",           :string,              :default => "", :null => false
     end