discourse/db/migrate/20140402201432_make_content_sha1_nullable.rb

6 lines
163 B
Ruby
Raw Normal View History

class MakeContentSha1Nullable < ActiveRecord::Migration[4.2]
def change
2017-07-28 09:20:09 +08:00
change_column :topic_embeds, :content_sha1, :string, limit: 40, null: true
end
end