b7e3373c663c4ea601512640b49e6c80e1c3240a
[arvados.git] / services / api / db / migrate / 20170824202826_trashable_groups.rb
1 class TrashableGroups < ActiveRecord::Migration
2   def change
3     add_column :groups, :trash_at, :datetime
4     add_column :groups, :delete_at, :datetime
5     add_column :groups, :is_trashed, :boolean, null: false, default: false
6   end
7 end