fixes syntax error
This commit is contained in:
parent
a59b23a18d
commit
1613799be4
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue