20170125145934_add_spoiler_text_to_statuses.rb 189 B

1234567
  1. # frozen_string_literal: true
  2. class AddSpoilerTextToStatuses < ActiveRecord::Migration[5.0]
  3. def change
  4. add_column :statuses, :spoiler_text, :text, default: '', null: false
  5. end
  6. end