From 1613799be479338b39d75ca5dc0acf86f85587f3 Mon Sep 17 00:00:00 2001 From: Nick Black Date: Thu, 24 Jan 2008 11:09:06 +0000 Subject: [PATCH] fixes syntax error --- db/migrate/011_create_node_tags.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.43.2