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,7 +11,14 @@ | ||
11 | # | 11 | # |
12 | # It's strongly recommended that you check this file into your version control system. | 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 | create_table "project_ownerships", force: true do |t| | 23 | create_table "project_ownerships", force: true do |t| |
17 | t.integer "user_id" | 24 | t.integer "user_id" |
@@ -27,6 +34,12 @@ ActiveRecord::Schema.define(version: 20131219115819) do | @@ -27,6 +34,12 @@ ActiveRecord::Schema.define(version: 20131219115819) do | ||
27 | t.datetime "updated_at" | 34 | t.datetime "updated_at" |
28 | end | 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 | create_table "users", force: true do |t| | 43 | create_table "users", force: true do |t| |
31 | t.string "name", default: "", null: false | 44 | t.string "name", default: "", null: false |
32 | t.string "email", default: "", null: false | 45 | t.string "email", default: "", null: false |