discourse/db/migrate/20120615180517_create_bookm...

12 lines
245 B
Ruby
Raw Normal View History

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
t.timestamps
end
add_index :bookmarks, [:user_id, :post_id], unique: true
end
end