X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/602b7b6d3fc602288804ebe16d00181f4acfa239..051e44c63ad54b03cc5cc1e48855a9890c6c5e07:/db/migrate/011_create_node_tags.rb 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