We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6427bb2 commit 68cd6c0Copy full SHA for 68cd6c0
db/schema.rb
@@ -11,7 +11,7 @@
11
#
12
# It's strongly recommended to check this file into your version control system.
13
14
-ActiveRecord::Schema.define(:version => 20100412220801) do
+ActiveRecord::Schema.define(:version => 20130119020645) do
15
16
create_table "albums", :force => true do |t|
17
t.string "title", :null => false
@@ -27,6 +27,14 @@
27
28
add_index "albums", ["id"], :name => "index_albums_on_id", :unique => true
29
30
+ create_table "authentications", :force => true do |t|
31
+ t.integer "user_id"
32
+ t.string "provider"
33
+ t.string "uid"
34
+ t.datetime "created_at", :null => false
35
+ t.datetime "updated_at", :null => false
36
+ end
37
+
38
create_table "collection_albums", :force => true do |t|
39
t.integer "collection_id"
40
t.integer "album_id"
0 commit comments