5 lines
134 B
Ruby
5 lines
134 B
Ruby
class ChangeGithubIssueColumnName < ActiveRecord::Migration
|
|
def change
|
|
rename_column :github_issues, :type, :category
|
|
end
|
|
end
|