37383966ef
features for archive projects abilities for archived project other abilities for archive projects only limit commits and merges for archived projects ability changed to prohibited actions on archived projects added spec and feature tests for archive projects changed search bar not to include archived projects
5 lines
152 B
Ruby
5 lines
152 B
Ruby
class AddArchivedToProjects < ActiveRecord::Migration
|
|
def change
|
|
add_column :projects, :archived, :boolean, default: false, null: false
|
|
end
|
|
end
|