mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-18 03:25:31 -05:00
15 lines
341 B
Ruby
15 lines
341 B
Ruby
|
class DropReadPosts < ActiveRecord::Migration
|
||
|
def up
|
||
|
drop_table :read_posts
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
create_table :read_posts, id: false do |t|
|
||
|
t.integer :forum_thread_id, null: false
|
||
|
t.integer :user_id, null: false
|
||
|
t.column :page, :integer, null: false
|
||
|
t.column :seen, :integer, null: false
|
||
|
end
|
||
|
end
|
||
|
end
|