]> git.openstreetmap.org Git - rails.git/commitdiff
fixes syntax error
authorNick Black <nickb@svn.openstreetmap.org>
Thu, 24 Jan 2008 11:09:06 +0000 (11:09 +0000)
committerNick Black <nickb@svn.openstreetmap.org>
Thu, 24 Jan 2008 11:09:06 +0000 (11:09 +0000)
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|
 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
       t.column "k",           :string,              :default => "", :null => false
       t.column "v",           :string,              :default => "", :null => false
     end