diff options
Diffstat (limited to 'db/migrate/004_export_pdf.rb')
-rw-r--r-- | db/migrate/004_export_pdf.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/db/migrate/004_export_pdf.rb b/db/migrate/004_export_pdf.rb index 66045553f..6ccd67eae 100644 --- a/db/migrate/004_export_pdf.rb +++ b/db/migrate/004_export_pdf.rb @@ -1,4 +1,7 @@ class ExportPdf < ActiveRecord::Migration + # model removed + class Permission < ActiveRecord::Base; end + def self.up Permission.create :controller => "projects", :action => "export_issues_pdf", :description => "label_export_pdf", :sort => 1002, :is_public => true, :mail_option => 0, :mail_enabled => 0 Permission.create :controller => "issues", :action => "export_pdf", :description => "label_export_pdf", :sort => 1015, :is_public => true, :mail_option => 0, :mail_enabled => 0 |