schema.rb 12.6 KB
Newer Older
gitlabhq's avatar
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
ActiveRecord::Schema.define(:version => 20121205201726) do
15

Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
16
  create_table "events", :force => true do |t|
17 18
    t.string   "target_type"
    t.integer  "target_id"
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
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"
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
26
  end
27

28 29
  add_index "events", ["action"], :name => "index_events_on_action"
  add_index "events", ["author_id"], :name => "index_events_on_author_id"
30
  add_index "events", ["created_at"], :name => "index_events_on_created_at"
31
  add_index "events", ["project_id"], :name => "index_events_on_project_id"
32
  add_index "events", ["target_id"], :name => "index_events_on_target_id"
33 34
  add_index "events", ["target_type"], :name => "index_events_on_target_type"

gitlabhq's avatar
gitlabhq committed
35 36 37 38 39
  create_table "issues", :force => true do |t|
    t.string   "title"
    t.integer  "assignee_id"
    t.integer  "author_id"
    t.integer  "project_id"
40 41
    t.datetime "created_at",                      :null => false
    t.datetime "updated_at",                      :null => false
42 43
    t.boolean  "closed",       :default => false, :null => false
    t.integer  "position",     :default => 0
gitlabhq's avatar
gitlabhq committed
44
    t.string   "branch_name"
45
    t.text     "description"
46
    t.integer  "milestone_id"
gitlabhq's avatar
gitlabhq committed
47 48
  end

49 50
  add_index "issues", ["assignee_id"], :name => "index_issues_on_assignee_id"
  add_index "issues", ["author_id"], :name => "index_issues_on_author_id"
51 52
  add_index "issues", ["closed"], :name => "index_issues_on_closed"
  add_index "issues", ["created_at"], :name => "index_issues_on_created_at"
53
  add_index "issues", ["milestone_id"], :name => "index_issues_on_milestone_id"
Valery Sizov's avatar
Valery Sizov committed
54
  add_index "issues", ["project_id"], :name => "index_issues_on_project_id"
55
  add_index "issues", ["title"], :name => "index_issues_on_title"
Valery Sizov's avatar
Valery Sizov committed
56

gitlabhq's avatar
gitlabhq committed
57
  create_table "keys", :force => true do |t|
miks's avatar
miks committed
58
    t.integer  "user_id"
59 60
    t.datetime "created_at", :null => false
    t.datetime "updated_at", :null => false
gitlabhq's avatar
gitlabhq committed
61 62 63
    t.text     "key"
    t.string   "title"
    t.string   "identifier"
miks's avatar
miks committed
64
    t.integer  "project_id"
gitlabhq's avatar
gitlabhq committed
65 66
  end

67 68
  add_index "keys", ["identifier"], :name => "index_keys_on_identifier"
  add_index "keys", ["project_id"], :name => "index_keys_on_project_id"
69 70
  add_index "keys", ["user_id"], :name => "index_keys_on_user_id"

Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
71
  create_table "merge_requests", :force => true do |t|
72 73 74
    t.string   "target_branch",                                          :null => false
    t.string   "source_branch",                                          :null => false
    t.integer  "project_id",                                             :null => false
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
75 76 77
    t.integer  "author_id"
    t.integer  "assignee_id"
    t.string   "title"
78
    t.boolean  "closed",                              :default => false, :null => false
79 80
    t.datetime "created_at",                                             :null => false
    t.datetime "updated_at",                                             :null => false
81 82
    t.text     "st_commits",    :limit => 2147483647
    t.text     "st_diffs",      :limit => 2147483647
83
    t.boolean  "merged",                              :default => false, :null => false
84
    t.integer  "state",                               :default => 1,     :null => false
85
    t.integer  "milestone_id"
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
86 87
  end

88 89
  add_index "merge_requests", ["assignee_id"], :name => "index_merge_requests_on_assignee_id"
  add_index "merge_requests", ["author_id"], :name => "index_merge_requests_on_author_id"
90 91
  add_index "merge_requests", ["closed"], :name => "index_merge_requests_on_closed"
  add_index "merge_requests", ["created_at"], :name => "index_merge_requests_on_created_at"
92
  add_index "merge_requests", ["milestone_id"], :name => "index_merge_requests_on_milestone_id"
Valery Sizov's avatar
Valery Sizov committed
93
  add_index "merge_requests", ["project_id"], :name => "index_merge_requests_on_project_id"
94 95 96
  add_index "merge_requests", ["source_branch"], :name => "index_merge_requests_on_source_branch"
  add_index "merge_requests", ["target_branch"], :name => "index_merge_requests_on_target_branch"
  add_index "merge_requests", ["title"], :name => "index_merge_requests_on_title"
Valery Sizov's avatar
Valery Sizov committed
97

98
  create_table "milestones", :force => true do |t|
99 100
    t.string   "title",                          :null => false
    t.integer  "project_id",                     :null => false
101
    t.text     "description"
102 103 104 105
    t.date     "due_date"
    t.boolean  "closed",      :default => false, :null => false
    t.datetime "created_at",                     :null => false
    t.datetime "updated_at",                     :null => false
106 107
  end

108 109 110
  add_index "milestones", ["due_date"], :name => "index_milestones_on_due_date"
  add_index "milestones", ["project_id"], :name => "index_milestones_on_project_id"

111 112
  create_table "namespaces", :force => true do |t|
    t.string   "name",       :null => false
113
    t.string   "path",       :null => false
114 115 116 117 118 119
    t.integer  "owner_id",   :null => false
    t.datetime "created_at", :null => false
    t.datetime "updated_at", :null => false
    t.string   "type"
  end

120
  add_index "namespaces", ["name"], :name => "index_namespaces_on_name"
121
  add_index "namespaces", ["owner_id"], :name => "index_namespaces_on_owner_id"
122 123
  add_index "namespaces", ["path"], :name => "index_namespaces_on_path"
  add_index "namespaces", ["type"], :name => "index_namespaces_on_type"
124

gitlabhq's avatar
gitlabhq committed
125
  create_table "notes", :force => true do |t|
gitlabhq's avatar
gitlabhq committed
126
    t.text     "note"
127
    t.string   "noteable_id"
gitlabhq's avatar
gitlabhq committed
128 129
    t.string   "noteable_type"
    t.integer  "author_id"
130 131
    t.datetime "created_at",    :null => false
    t.datetime "updated_at",    :null => false
gitlabhq's avatar
gitlabhq committed
132 133
    t.integer  "project_id"
    t.string   "attachment"
134
    t.string   "line_code"
gitlabhq's avatar
gitlabhq committed
135 136
  end

137
  add_index "notes", ["created_at"], :name => "index_notes_on_created_at"
Valery Sizov's avatar
Valery Sizov committed
138 139
  add_index "notes", ["noteable_id"], :name => "index_notes_on_noteable_id"
  add_index "notes", ["noteable_type"], :name => "index_notes_on_noteable_type"
140
  add_index "notes", ["project_id"], :name => "index_notes_on_project_id"
Valery Sizov's avatar
Valery Sizov committed
141

gitlabhq's avatar
gitlabhq committed
142 143 144 145
  create_table "projects", :force => true do |t|
    t.string   "name"
    t.string   "path"
    t.text     "description"
146 147 148
    t.datetime "created_at",                               :null => false
    t.datetime "updated_at",                               :null => false
    t.boolean  "private_flag",           :default => true, :null => false
149
    t.integer  "owner_id"
150 151 152 153 154
    t.string   "default_branch"
    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
    t.boolean  "wiki_enabled",           :default => true, :null => false
155
    t.integer  "namespace_id"
gitlabhq's avatar
gitlabhq committed
156 157
  end

158 159 160
  add_index "projects", ["namespace_id"], :name => "index_projects_on_namespace_id"
  add_index "projects", ["owner_id"], :name => "index_projects_on_owner_id"

161 162 163 164 165 166 167
  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

168 169 170 171
  create_table "services", :force => true do |t|
    t.string   "type"
    t.string   "title"
    t.string   "token"
172 173 174 175 176
    t.integer  "project_id",                     :null => false
    t.datetime "created_at",                     :null => false
    t.datetime "updated_at",                     :null => false
    t.boolean  "active",      :default => false, :null => false
    t.string   "project_url"
177 178
  end

179 180
  add_index "services", ["project_id"], :name => "index_services_on_project_id"

gitlabhq's avatar
gitlabhq committed
181 182 183 184 185
  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
186 187
    t.datetime "created_at", :null => false
    t.datetime "updated_at", :null => false
gitlabhq's avatar
gitlabhq committed
188
    t.string   "file_name"
189
    t.datetime "expires_at"
gitlabhq's avatar
gitlabhq committed
190 191
  end

192 193
  add_index "snippets", ["created_at"], :name => "index_snippets_on_created_at"
  add_index "snippets", ["expires_at"], :name => "index_snippets_on_expires_at"
194 195
  add_index "snippets", ["project_id"], :name => "index_snippets_on_project_id"

Aleksei Kvitinskii's avatar
Aleksei Kvitinskii committed
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
  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's avatar
gitlabhq committed
213
  create_table "users", :force => true do |t|
randx's avatar
randx committed
214 215
    t.string   "email",                  :default => "",    :null => false
    t.string   "encrypted_password",     :default => "",    :null => false
gitlabhq's avatar
gitlabhq committed
216 217 218
    t.string   "reset_password_token"
    t.datetime "reset_password_sent_at"
    t.datetime "remember_created_at"
randx's avatar
randx committed
219
    t.integer  "sign_in_count",          :default => 0
gitlabhq's avatar
gitlabhq committed
220 221 222 223
    t.datetime "current_sign_in_at"
    t.datetime "last_sign_in_at"
    t.string   "current_sign_in_ip"
    t.string   "last_sign_in_ip"
randx's avatar
randx committed
224 225
    t.datetime "created_at",                                :null => false
    t.datetime "updated_at",                                :null => false
gitlabhq's avatar
gitlabhq committed
226
    t.string   "name"
randx's avatar
randx committed
227 228 229 230 231
    t.boolean  "admin",                  :default => false, :null => false
    t.integer  "projects_limit",         :default => 10
    t.string   "skype",                  :default => "",    :null => false
    t.string   "linkedin",               :default => "",    :null => false
    t.string   "twitter",                :default => "",    :null => false
Nihad Abbasov's avatar
Nihad Abbasov committed
232
    t.string   "authentication_token"
randx's avatar
randx committed
233 234
    t.boolean  "dark_scheme",            :default => false, :null => false
    t.integer  "theme_id",               :default => 1,     :null => false
235
    t.string   "bio"
randx's avatar
randx committed
236 237
    t.boolean  "blocked",                :default => false, :null => false
    t.integer  "failed_attempts",        :default => 0
238
    t.datetime "locked_at"
239 240
    t.string   "extern_uid"
    t.string   "provider"
241
    t.string   "username"
gitlabhq's avatar
gitlabhq committed
242 243
  end

244 245
  add_index "users", ["admin"], :name => "index_users_on_admin"
  add_index "users", ["blocked"], :name => "index_users_on_blocked"
gitlabhq's avatar
gitlabhq committed
246
  add_index "users", ["email"], :name => "index_users_on_email", :unique => true
247
  add_index "users", ["extern_uid", "provider"], :name => "index_users_on_extern_uid_and_provider", :unique => true
248
  add_index "users", ["name"], :name => "index_users_on_name"
gitlabhq's avatar
gitlabhq committed
249
  add_index "users", ["reset_password_token"], :name => "index_users_on_reset_password_token", :unique => true
250
  add_index "users", ["username"], :name => "index_users_on_username"
gitlabhq's avatar
gitlabhq committed
251 252 253 254

  create_table "users_projects", :force => true do |t|
    t.integer  "user_id",                       :null => false
    t.integer  "project_id",                    :null => false
255 256
    t.datetime "created_at",                    :null => false
    t.datetime "updated_at",                    :null => false
257
    t.integer  "project_access", :default => 0, :null => false
gitlabhq's avatar
gitlabhq committed
258 259
  end

260
  add_index "users_projects", ["project_access"], :name => "index_users_projects_on_project_access"
261
  add_index "users_projects", ["project_id"], :name => "index_users_projects_on_project_id"
262
  add_index "users_projects", ["user_id"], :name => "index_users_projects_on_user_id"
263

264 265 266
  create_table "web_hooks", :force => true do |t|
    t.string   "url"
    t.integer  "project_id"
267 268 269
    t.datetime "created_at",                            :null => false
    t.datetime "updated_at",                            :null => false
    t.string   "type",       :default => "ProjectHook"
270
    t.integer  "service_id"
271 272
  end

Valery Sizov's avatar
Valery Sizov committed
273 274 275 276 277 278 279
  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's avatar
Valery Sizov committed
280
    t.integer  "user_id"
Valery Sizov's avatar
Valery Sizov committed
281 282
  end

283 284 285
  add_index "wikis", ["project_id"], :name => "index_wikis_on_project_id"
  add_index "wikis", ["slug"], :name => "index_wikis_on_slug"

gitlabhq's avatar
gitlabhq committed
286
end