mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
12 lines
345 B
Ruby
12 lines
345 B
Ruby
class CreateLastReadPosts < ActiveRecord::Migration
|
|
def change
|
|
create_table :last_read_posts do |t|
|
|
t.integer :user_id, null: false
|
|
t.integer :forum_thread_id, null: false
|
|
t.integer :post_number, null: false
|
|
t.timestamps
|
|
end
|
|
|
|
add_index :last_read_posts, [:user_id, :forum_thread_id], unique: true
|
|
end
|
|
end
|