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/20130710201248_add_nuked_user_to_posts.rb

6 lines
136 B
Ruby

class AddNukedUserToPosts < ActiveRecord::Migration
def change
add_column :posts, :nuked_user, :boolean, default: false
end
end