2013-02-05 14:16:51 -05:00
|
|
|
class CreateBookmarks < ActiveRecord::Migration
|
|
|
|
def change
|
|
|
|
create_table :bookmarks do |t|
|
|
|
|
t.integer :user_id
|
|
|
|
t.integer :post_id
|
2017-08-07 11:48:36 -04:00
|
|
|
t.timestamps null: false
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
add_index :bookmarks, [:user_id, :post_id], unique: true
|
|
|
|
end
|
|
|
|
end
|