Commit 093473290e24261a1b26145bd3d7f93fa64e5e93
1 parent
04d3d461
Exists in
colab
and in
4 other branches
Updated schema
Showing
1 changed file
with
14 additions
and
1 deletions
Show diff stats
db/schema.rb
... | ... | @@ -11,7 +11,7 @@ |
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: 20130826211404) do | |
14 | +ActiveRecord::Schema.define(version: 20131219115819) do | |
15 | 15 | |
16 | 16 | create_table "project_ownerships", force: true do |t| |
17 | 17 | t.integer "user_id" |
... | ... | @@ -20,6 +20,19 @@ ActiveRecord::Schema.define(version: 20130826211404) do |
20 | 20 | t.datetime "updated_at" |
21 | 21 | end |
22 | 22 | |
23 | + create_table "reading_group_ownerships", force: true do |t| | |
24 | + t.integer "user_id" | |
25 | + t.integer "reading_group_id" | |
26 | + t.datetime "created_at" | |
27 | + t.datetime "updated_at" | |
28 | + end | |
29 | + | |
30 | + create_table "repositories", force: true do |t| | |
31 | + t.string "name" | |
32 | + t.datetime "created_at" | |
33 | + t.datetime "updated_at" | |
34 | + end | |
35 | + | |
23 | 36 | create_table "users", force: true do |t| |
24 | 37 | t.string "name", default: "", null: false |
25 | 38 | t.string "email", default: "", null: false | ... | ... |