Commit 00b4c4571ca0e36ed058dd5aec5da7ed772b16b4
1 parent
9e5c0168
Exists in
master
and in
4 other branches
Add to schema.rb the increased MR text column size.
This change was made in a migration in commit 17a88bb6a21cc8b6125bd2e36c1f62f4bd13300e. Because the schema.rb is checked in, the column size increase should be here, too.
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
db/schema.rb
@@ -62,8 +62,8 @@ ActiveRecord::Schema.define(:version => 20120413135904) do | @@ -62,8 +62,8 @@ ActiveRecord::Schema.define(:version => 20120413135904) do | ||
62 | t.boolean "closed", :default => false, :null => false | 62 | t.boolean "closed", :default => false, :null => false |
63 | t.datetime "created_at", :null => false | 63 | t.datetime "created_at", :null => false |
64 | t.datetime "updated_at", :null => false | 64 | t.datetime "updated_at", :null => false |
65 | - t.text "st_commits", :limit => 2147483647 | ||
66 | - t.text "st_diffs", :limit => 2147483647 | 65 | + t.text "st_commits", :limit => 4294967295 |
66 | + t.text "st_diffs", :limit => 4294967295 | ||
67 | t.boolean "merged", :default => false, :null => false | 67 | t.boolean "merged", :default => false, :null => false |
68 | t.integer "state", :default => 1, :null => false | 68 | t.integer "state", :default => 1, :null => false |
69 | end | 69 | end |