fixes syntax error

This commit is contained in:
Nick Black 2008-01-24 11:09:06 +00:00
parent a59b23a18d
commit 1613799be4

View 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