mirror of
https://github.com/dolphin-emu/redmine_issue_templates.git
synced 2024-11-27 11:30:23 +00:00
18 lines
332 B
Ruby
18 lines
332 B
Ruby
class CreateIssueTemplateSettings < ActiveRecord::Migration
|
|
def self.up
|
|
create_table :issue_template_settings do |t|
|
|
|
|
t.column :project_id, :integer
|
|
|
|
t.column :help_message, :text
|
|
|
|
t.column :enabled, :boolean
|
|
|
|
end
|
|
end
|
|
|
|
def self.down
|
|
drop_table :issue_template_settings
|
|
end
|
|
end
|