This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/db/migrate/20120619153349_drop_read_posts.rb
2013-02-26 07:31:35 +03:00

15 lines
337 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