Add to schema.rb the increased MR text column size.
This change was made in a migration in commit 17a88bb6a2
.
Because the schema.rb is checked in, the column size increase should
be here, too.
This commit is contained in:
parent
9e5c016847
commit
00b4c4571c
1 changed files with 2 additions and 2 deletions
|
@ -62,8 +62,8 @@ ActiveRecord::Schema.define(:version => 20120413135904) do
|
|||
t.boolean "closed", :default => false, :null => false
|
||||
t.datetime "created_at", :null => false
|
||||
t.datetime "updated_at", :null => false
|
||||
t.text "st_commits", :limit => 2147483647
|
||||
t.text "st_diffs", :limit => 2147483647
|
||||
t.text "st_commits", :limit => 4294967295
|
||||
t.text "st_diffs", :limit => 4294967295
|
||||
t.boolean "merged", :default => false, :null => false
|
||||
t.integer "state", :default => 1, :null => false
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue