2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 09:10:25 +08:00
discourse/db/migrate/20120615180517_create_bookmarks.rb

11 lines
262 B
Ruby

class CreateBookmarks < ActiveRecord::Migration[4.2]
def change
create_table :bookmarks do |t|
t.integer :user_id
t.integer :post_id
t.timestamps null: false
end
add_index :bookmarks, [:user_id, :post_id], unique: true
end
end