discourse/db/migrate/20140402201432_make_content_sha1_nullable.rb
2017-07-28 10:20:09 +09:00

6 lines
158 B
Ruby

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