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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-04-09 02:01:42 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-04-09 02:01:42 +0400
commitd98b1833612af09fb405880ef7acd63a4e2a42fa (patch)
treeaeaccad8bca98675765206f2856db2509c3c29bf /db
parent23d950855d6d2524d00b1f0618c008e2529f06a4 (diff)
first pack of tests for milestones
Diffstat (limited to 'db')
-rw-r--r--db/schema.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 51e78b76847..906c5b0024c 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -65,18 +65,18 @@ ActiveRecord::Schema.define(:version => 20120408181910) do
t.text "st_commits", :limit => 2147483647
t.text "st_diffs", :limit => 2147483647
t.boolean "merged", :default => false, :null => false
- t.boolean "auto_merge", :default => true, :null => false
end
add_index "merge_requests", ["project_id"], :name => "index_merge_requests_on_project_id"
create_table "milestones", :force => true do |t|
- t.string "title", :null => false
+ t.string "title", :null => false
+ t.integer "project_id", :null => false
t.text "description"
- t.date "due_date", :null => false
- t.integer "project_id", :null => false
- t.datetime "created_at", :null => false
- t.datetime "updated_at", :null => false
+ t.date "due_date"
+ t.boolean "closed", :default => false, :null => false
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
end
create_table "notes", :force => true do |t|