Fix order of migrations

This commit is contained in:
Eugen Rochko
2017-01-25 15:01:00 +01:00
parent ca04002c93
commit 51a7047367
3 changed files with 3 additions and 3 deletions

View File

@ -0,0 +1,5 @@
class AddSpoilerTextToStatuses < ActiveRecord::Migration[5.0]
def change
add_column :statuses, :spoiler_text, :text, default: ""
end
end