From: Nick Black Date: Thu, 24 Jan 2008 11:09:06 +0000 (+0000) Subject: fixes syntax error X-Git-Tag: live~7941 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/1613799be479338b39d75ca5dc0acf86f85587f3?ds=sidebyside fixes syntax error --- diff --git a/db/migrate/011_create_node_tags.rb b/db/migrate/011_create_node_tags.rb index 6f84043ee..316602d69 100644 --- a/db/migrate/011_create_node_tags.rb +++ b/db/migrate/011_create_node_tags.rb @@ -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