Commit 7fa4bdd800042ba3048608c4a23aa02f8871d195

Authored by Fellipe Souto Sampaio
Committed by Rafael Manzo
1 parent 104f3ab0

Update db schema

Signed-of By: Renan Fichberg <rfichberg@gmail.com>
Showing 1 changed file with 6 additions and 0 deletions   Show diff stats
db/schema.rb
... ... @@ -27,6 +27,12 @@ ActiveRecord::Schema.define(version: 20131219115819) do
27 27 t.datetime "updated_at"
28 28 end
29 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 +
30 36 create_table "users", force: true do |t|
31 37 t.string "name", default: "", null: false
32 38 t.string "email", default: "", null: false
... ...