Commit 401710c0501184c444ed7adc7d31e34d4f631d00
Committed by
Rafael Manzo
1 parent
0b4d7363
Exists in
colab
and in
4 other branches
Schema with mezuro configuration ownerships.
Showing
1 changed file
with
14 additions
and
1 deletions
Show diff stats
db/schema.rb
... | ... | @@ -11,7 +11,14 @@ |
11 | 11 | # |
12 | 12 | # It's strongly recommended that you check this file into your version control system. |
13 | 13 | |
14 | -ActiveRecord::Schema.define(version: 20131219115819) do | |
14 | +ActiveRecord::Schema.define(version: 20140124124835) do | |
15 | + | |
16 | + create_table "mezuro_configuration_ownerships", force: true do |t| | |
17 | + t.integer "user_id" | |
18 | + t.integer "mezuro_configuration_id" | |
19 | + t.datetime "created_at" | |
20 | + t.datetime "updated_at" | |
21 | + end | |
15 | 22 | |
16 | 23 | create_table "project_ownerships", force: true do |t| |
17 | 24 | t.integer "user_id" |
... | ... | @@ -27,6 +34,12 @@ ActiveRecord::Schema.define(version: 20131219115819) do |
27 | 34 | t.datetime "updated_at" |
28 | 35 | end |
29 | 36 | |
37 | + create_table "repositories", force: true do |t| | |
38 | + t.string "name" | |
39 | + t.datetime "created_at" | |
40 | + t.datetime "updated_at" | |
41 | + end | |
42 | + | |
30 | 43 | create_table "users", force: true do |t| |
31 | 44 | t.string "name", default: "", null: false |
32 | 45 | t.string "email", default: "", null: false | ... | ... |