* Change github repo's columen default * Update GithubRepo::update_to_latest * Fix failing spec
5 lines
155 B
Ruby
5 lines
155 B
Ruby
class ChangeGithubRepoColumnDefault < ActiveRecord::Migration[5.1]
|
|
def change
|
|
change_column_default(:github_repos, :info_hash, {}.to_yaml)
|
|
end
|
|
end
|