|
|
|
@ -11,7 +11,7 @@
|
|
|
|
|
#
|
|
|
|
|
# It's strongly recommended to check this file into your version control system.
|
|
|
|
|
|
|
|
|
|
ActiveRecord::Schema.define(:version => 20140711012924) do
|
|
|
|
|
ActiveRecord::Schema.define(:version => 20140714081030) do
|
|
|
|
|
|
|
|
|
|
create_table "activities", :force => true do |t|
|
|
|
|
|
t.integer "act_id", :null => false
|
|
|
|
@ -177,6 +177,58 @@ ActiveRecord::Schema.define(:version => 20140711012924) do
|
|
|
|
|
|
|
|
|
|
add_index "changesets_issues", ["changeset_id", "issue_id"], :name => "changesets_issues_ids", :unique => true
|
|
|
|
|
|
|
|
|
|
create_table "code_review_assignments", :force => true do |t|
|
|
|
|
|
t.integer "issue_id"
|
|
|
|
|
t.integer "change_id"
|
|
|
|
|
t.integer "attachment_id"
|
|
|
|
|
t.string "file_path"
|
|
|
|
|
t.string "rev"
|
|
|
|
|
t.string "rev_to"
|
|
|
|
|
t.string "action_type"
|
|
|
|
|
t.integer "changeset_id"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
create_table "code_review_project_settings", :force => true do |t|
|
|
|
|
|
t.integer "project_id"
|
|
|
|
|
t.integer "tracker_id"
|
|
|
|
|
t.datetime "created_at"
|
|
|
|
|
t.datetime "updated_at"
|
|
|
|
|
t.integer "updated_by"
|
|
|
|
|
t.boolean "hide_code_review_tab", :default => false
|
|
|
|
|
t.integer "auto_relation", :default => 1
|
|
|
|
|
t.integer "assignment_tracker_id"
|
|
|
|
|
t.text "auto_assign"
|
|
|
|
|
t.integer "lock_version", :default => 0, :null => false
|
|
|
|
|
t.boolean "tracker_in_review_dialog", :default => false
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
create_table "code_review_user_settings", :force => true do |t|
|
|
|
|
|
t.integer "user_id", :default => 0, :null => false
|
|
|
|
|
t.integer "mail_notification", :default => 0, :null => false
|
|
|
|
|
t.datetime "created_at"
|
|
|
|
|
t.datetime "updated_at"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
create_table "code_reviews", :force => true do |t|
|
|
|
|
|
t.integer "project_id"
|
|
|
|
|
t.integer "change_id"
|
|
|
|
|
t.datetime "created_at"
|
|
|
|
|
t.datetime "updated_at"
|
|
|
|
|
t.integer "line"
|
|
|
|
|
t.integer "updated_by_id"
|
|
|
|
|
t.integer "lock_version", :default => 0, :null => false
|
|
|
|
|
t.integer "status_changed_from"
|
|
|
|
|
t.integer "status_changed_to"
|
|
|
|
|
t.integer "issue_id"
|
|
|
|
|
t.string "action_type"
|
|
|
|
|
t.string "file_path"
|
|
|
|
|
t.string "rev"
|
|
|
|
|
t.string "rev_to"
|
|
|
|
|
t.integer "attachment_id"
|
|
|
|
|
t.integer "file_count", :default => 0, :null => false
|
|
|
|
|
t.boolean "diff_all"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
create_table "comments", :force => true do |t|
|
|
|
|
|
t.string "commented_type", :limit => 30, :default => "", :null => false
|
|
|
|
|
t.integer "commented_id", :default => 0, :null => false
|
|
|
|
@ -359,9 +411,9 @@ ActiveRecord::Schema.define(:version => 20140711012924) do
|
|
|
|
|
t.string "web_title"
|
|
|
|
|
t.string "title"
|
|
|
|
|
t.string "description"
|
|
|
|
|
t.string "page_type"
|
|
|
|
|
t.datetime "created_at", :null => false
|
|
|
|
|
t.datetime "updated_at", :null => false
|
|
|
|
|
t.string "page_type"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
create_table "forums", :force => true do |t|
|
|
|
|
@ -754,18 +806,18 @@ ActiveRecord::Schema.define(:version => 20140711012924) do
|
|
|
|
|
create_table "relative_memos", :force => true do |t|
|
|
|
|
|
t.integer "osp_id"
|
|
|
|
|
t.integer "parent_id"
|
|
|
|
|
t.string "subject", :null => false
|
|
|
|
|
t.text "content", :limit => 16777215, :null => false
|
|
|
|
|
t.string "subject", :null => false
|
|
|
|
|
t.text "content", :null => false
|
|
|
|
|
t.integer "author_id"
|
|
|
|
|
t.integer "replies_count", :default => 0
|
|
|
|
|
t.integer "replies_count", :default => 0
|
|
|
|
|
t.integer "last_reply_id"
|
|
|
|
|
t.boolean "lock", :default => false
|
|
|
|
|
t.boolean "sticky", :default => false
|
|
|
|
|
t.boolean "is_quote", :default => false
|
|
|
|
|
t.datetime "created_at", :null => false
|
|
|
|
|
t.datetime "updated_at", :null => false
|
|
|
|
|
t.integer "viewed_count_crawl", :default => 0
|
|
|
|
|
t.integer "viewed_count_local", :default => 0
|
|
|
|
|
t.boolean "lock", :default => false
|
|
|
|
|
t.boolean "sticky", :default => false
|
|
|
|
|
t.boolean "is_quote", :default => false
|
|
|
|
|
t.datetime "created_at", :null => false
|
|
|
|
|
t.datetime "updated_at", :null => false
|
|
|
|
|
t.integer "viewed_count_crawl", :default => 0
|
|
|
|
|
t.integer "viewed_count_local", :default => 0
|
|
|
|
|
t.string "url"
|
|
|
|
|
t.string "username"
|
|
|
|
|
t.string "userhomeurl"
|
|
|
|
|