Commit 093473290e24261a1b26145bd3d7f93fa64e5e93

Authored by Rafael Manzo
1 parent 04d3d461

Updated schema

Showing 1 changed file with 14 additions and 1 deletions   Show diff stats
@@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@
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: 20130826211404) do 14 +ActiveRecord::Schema.define(version: 20131219115819) do
15 15
16 create_table "project_ownerships", force: true do |t| 16 create_table "project_ownerships", force: true do |t|
17 t.integer "user_id" 17 t.integer "user_id"
@@ -20,6 +20,19 @@ ActiveRecord::Schema.define(version: 20130826211404) do @@ -20,6 +20,19 @@ ActiveRecord::Schema.define(version: 20130826211404) do
20 t.datetime "updated_at" 20 t.datetime "updated_at"
21 end 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 create_table "users", force: true do |t| 36 create_table "users", force: true do |t|
24 t.string "name", default: "", null: false 37 t.string "name", default: "", null: false
25 t.string "email", default: "", null: false 38 t.string "email", default: "", null: false