Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorRobb Kidd <robb@thekidds.org>2012-05-11 01:54:22 +0400
committerRobb Kidd <robb@thekidds.org>2012-05-11 01:54:22 +0400
commit00b4c4571ca0e36ed058dd5aec5da7ed772b16b4 (patch)
treefd365330337e7548154644128c5bc5217b15e8d5 /db
parent9e5c016847f99350d3eb5444d58a9e9944294fc6 (diff)
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.
Diffstat (limited to 'db')
-rw-r--r--db/schema.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/schema.rb b/db/schema.rb
index b1c2cf19f67..59098d7ccc1 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -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