Files
old-holivud2/db/migrate/20181114182730_add_notes_to_unreleased_appearances.rb

6 lines
146 B
Ruby
Raw Normal View History

2020-05-31 22:38:19 +02:00
class AddNotesToUnreleasedAppearances < ActiveRecord::Migration[5.2]
def change
add_column :unreleased_appearances, :notes, :text
end
end