This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/db/migrate/20140402201432_make_content_sha1_nullable.rb

6 lines
163 B
Ruby

class MakeContentSha1Nullable < ActiveRecord::Migration[4.2]
def change
change_column :topic_embeds, :content_sha1, :string, limit: 40, null: true
end
end