2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-10-03 17:21:20 +08:00
discourse/db/migrate/20120519182212_create_last_read_posts.rb
2023-01-09 11:59:41 +00:00

14 lines
392 B
Ruby

# frozen_string_literal: true
class CreateLastReadPosts < ActiveRecord::Migration[4.2]
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 null: false
end
add_index :last_read_posts, %i[user_id forum_thread_id], unique: true
end
end