2023-07-12 07:47:08 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-01-13 04:54:26 +00:00
|
|
|
class AddSpoilerTextToStatuses < ActiveRecord::Migration[5.0]
|
|
|
|
def change
|
2023-02-18 22:38:14 +00:00
|
|
|
add_column :statuses, :spoiler_text, :text, default: '', null: false
|
2017-01-13 04:54:26 +00:00
|
|
|
end
|
|
|
|
end
|