Allow the content_sha1 column of topic_embed to be nullable

This commit is contained in:
Robin Ward
2014-04-02 16:18:51 -04:00
parent d1e7fa1c47
commit 079123f008
3 changed files with 5 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
class MakeContentSha1Nullable < ActiveRecord::Migration
def change
change_column :topic_embeds, :content_sha1, :string, :limit => 40, :null => true
end
end