BigW Consortium Gitlab

schema.rb 8.25 KB
Newer Older
gitlabhq committed
1 2 3 4 5 6 7 8 9 10 11 12 13
# encoding: UTF-8
# This file is auto-generated from the current state of the database. Instead
# of editing this file, please use the migrations feature of Active Record to
# incrementally modify your database, and then regenerate this schema definition.
#
# Note that this schema.rb definition is the authoritative source for your
# database schema. If you need to create the application database on another
# system, you should be using db:schema:load, not running all the migrations
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
# you'll amass, the slower it'll run and the greater likelihood for issues).
#
# It's strongly recommended to check this file into your version control system.

14 15
ActiveRecord::Schema.define(:version => 20120413135904) do

16
  create_table "events", :force => true do |t|
17 18
    t.string   "target_type"
    t.integer  "target_id"
19 20 21
    t.string   "title"
    t.text     "data"
    t.integer  "project_id"
22 23 24
    t.datetime "created_at",  :null => false
    t.datetime "updated_at",  :null => false
    t.integer  "action"
25
    t.integer  "author_id"
26
  end
27

gitlabhq committed
28 29 30 31 32
  create_table "issues", :force => true do |t|
    t.string   "title"
    t.integer  "assignee_id"
    t.integer  "author_id"
    t.integer  "project_id"
33 34
    t.datetime "created_at",                      :null => false
    t.datetime "updated_at",                      :null => false
35 36 37
    t.boolean  "closed",       :default => false, :null => false
    t.integer  "position",     :default => 0
    t.boolean  "critical",     :default => false, :null => false
38
    t.string   "branch_name"
39
    t.text     "description"
40
    t.integer  "milestone_id"
gitlabhq committed
41 42
  end

Valery Sizov committed
43 44
  add_index "issues", ["project_id"], :name => "index_issues_on_project_id"

gitlabhq committed
45
  create_table "keys", :force => true do |t|
miks committed
46
    t.integer  "user_id"
47 48
    t.datetime "created_at", :null => false
    t.datetime "updated_at", :null => false
gitlabhq committed
49 50 51
    t.text     "key"
    t.string   "title"
    t.string   "identifier"
miks committed
52
    t.integer  "project_id"
gitlabhq committed
53 54
  end

55
  create_table "merge_requests", :force => true do |t|
56 57 58
    t.string   "target_branch",                                          :null => false
    t.string   "source_branch",                                          :null => false
    t.integer  "project_id",                                             :null => false
59 60 61
    t.integer  "author_id"
    t.integer  "assignee_id"
    t.string   "title"
62
    t.boolean  "closed",                              :default => false, :null => false
63 64
    t.datetime "created_at",                                             :null => false
    t.datetime "updated_at",                                             :null => false
65 66
    t.text     "st_commits",    :limit => 4294967295
    t.text     "st_diffs",      :limit => 4294967295
67
    t.boolean  "merged",                              :default => false, :null => false
68
    t.integer  "state",                               :default => 1,     :null => false
69 70
  end

Valery Sizov committed
71 72
  add_index "merge_requests", ["project_id"], :name => "index_merge_requests_on_project_id"

73
  create_table "milestones", :force => true do |t|
74 75
    t.string   "title",                          :null => false
    t.integer  "project_id",                     :null => false
76
    t.text     "description"
77 78 79 80
    t.date     "due_date"
    t.boolean  "closed",      :default => false, :null => false
    t.datetime "created_at",                     :null => false
    t.datetime "updated_at",                     :null => false
81 82
  end

gitlabhq committed
83
  create_table "notes", :force => true do |t|
gitlabhq committed
84
    t.text     "note"
85
    t.string   "noteable_id"
gitlabhq committed
86 87
    t.string   "noteable_type"
    t.integer  "author_id"
88 89
    t.datetime "created_at",    :null => false
    t.datetime "updated_at",    :null => false
gitlabhq committed
90 91
    t.integer  "project_id"
    t.string   "attachment"
92
    t.string   "line_code"
gitlabhq committed
93 94
  end

Valery Sizov committed
95 96 97
  add_index "notes", ["noteable_id"], :name => "index_notes_on_noteable_id"
  add_index "notes", ["noteable_type"], :name => "index_notes_on_noteable_type"

gitlabhq committed
98 99 100 101
  create_table "projects", :force => true do |t|
    t.string   "name"
    t.string   "path"
    t.text     "description"
102 103
    t.datetime "created_at",                                   :null => false
    t.datetime "updated_at",                                   :null => false
104
    t.boolean  "private_flag",           :default => true,     :null => false
gitlabhq committed
105
    t.string   "code"
106
    t.integer  "owner_id"
107 108 109 110
    t.string   "default_branch",         :default => "master", :null => false
    t.boolean  "issues_enabled",         :default => true,     :null => false
    t.boolean  "wall_enabled",           :default => true,     :null => false
    t.boolean  "merge_requests_enabled", :default => true,     :null => false
Valery Sizov committed
111
    t.boolean  "wiki_enabled",           :default => true,     :null => false
gitlabhq committed
112 113
  end

114 115 116 117 118 119 120
  create_table "protected_branches", :force => true do |t|
    t.integer  "project_id", :null => false
    t.string   "name",       :null => false
    t.datetime "created_at", :null => false
    t.datetime "updated_at", :null => false
  end

gitlabhq committed
121 122 123 124 125
  create_table "snippets", :force => true do |t|
    t.string   "title"
    t.text     "content"
    t.integer  "author_id",  :null => false
    t.integer  "project_id", :null => false
126 127
    t.datetime "created_at", :null => false
    t.datetime "updated_at", :null => false
gitlabhq committed
128
    t.string   "file_name"
129
    t.datetime "expires_at"
gitlabhq committed
130 131
  end

Aleksei Kvitinskii committed
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
  create_table "taggings", :force => true do |t|
    t.integer  "tag_id"
    t.integer  "taggable_id"
    t.string   "taggable_type"
    t.integer  "tagger_id"
    t.string   "tagger_type"
    t.string   "context"
    t.datetime "created_at"
  end

  add_index "taggings", ["tag_id"], :name => "index_taggings_on_tag_id"
  add_index "taggings", ["taggable_id", "taggable_type", "context"], :name => "index_taggings_on_taggable_id_and_taggable_type_and_context"

  create_table "tags", :force => true do |t|
    t.string "name"
  end

gitlabhq committed
149 150 151 152 153 154 155 156 157 158 159
  create_table "users", :force => true do |t|
    t.string   "email",                                 :default => "",    :null => false
    t.string   "encrypted_password",     :limit => 128, :default => "",    :null => false
    t.string   "reset_password_token"
    t.datetime "reset_password_sent_at"
    t.datetime "remember_created_at"
    t.integer  "sign_in_count",                         :default => 0
    t.datetime "current_sign_in_at"
    t.datetime "last_sign_in_at"
    t.string   "current_sign_in_ip"
    t.string   "last_sign_in_ip"
160 161
    t.datetime "created_at",                                               :null => false
    t.datetime "updated_at",                                               :null => false
gitlabhq committed
162 163
    t.string   "name"
    t.boolean  "admin",                                 :default => false, :null => false
gitlabhq committed
164
    t.integer  "projects_limit",                        :default => 10
165 166 167
    t.string   "skype",                                 :default => "",    :null => false
    t.string   "linkedin",                              :default => "",    :null => false
    t.string   "twitter",                               :default => "",    :null => false
Nihad Abbasov committed
168
    t.string   "authentication_token"
169
    t.boolean  "dark_scheme",                           :default => false, :null => false
170
    t.integer  "theme_id",                              :default => 1,     :null => false
171
    t.string   "bio"
randx committed
172
    t.boolean  "blocked",                               :default => false, :null => false
gitlabhq committed
173 174 175 176 177 178 179 180
  end

  add_index "users", ["email"], :name => "index_users_on_email", :unique => true
  add_index "users", ["reset_password_token"], :name => "index_users_on_reset_password_token", :unique => true

  create_table "users_projects", :force => true do |t|
    t.integer  "user_id",                       :null => false
    t.integer  "project_id",                    :null => false
181 182
    t.datetime "created_at",                    :null => false
    t.datetime "updated_at",                    :null => false
183
    t.integer  "project_access", :default => 0, :null => false
gitlabhq committed
184 185
  end

186 187 188
  create_table "web_hooks", :force => true do |t|
    t.string   "url"
    t.integer  "project_id"
189 190
    t.datetime "created_at", :null => false
    t.datetime "updated_at", :null => false
191 192
  end

Valery Sizov committed
193 194 195 196 197 198 199
  create_table "wikis", :force => true do |t|
    t.string   "title"
    t.text     "content"
    t.integer  "project_id"
    t.datetime "created_at", :null => false
    t.datetime "updated_at", :null => false
    t.string   "slug"
Valery Sizov committed
200
    t.integer  "user_id"
Valery Sizov committed
201 202
  end

gitlabhq committed
203
end