Skip to content

Commit 68cd6c0

Browse files
committed
migration
1 parent 6427bb2 commit 68cd6c0

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

db/schema.rb

+9-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#
1212
# It's strongly recommended to check this file into your version control system.
1313

14-
ActiveRecord::Schema.define(:version => 20100412220801) do
14+
ActiveRecord::Schema.define(:version => 20130119020645) do
1515

1616
create_table "albums", :force => true do |t|
1717
t.string "title", :null => false
@@ -27,6 +27,14 @@
2727

2828
add_index "albums", ["id"], :name => "index_albums_on_id", :unique => true
2929

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+
3038
create_table "collection_albums", :force => true do |t|
3139
t.integer "collection_id"
3240
t.integer "album_id"

0 commit comments

Comments
 (0)