houdini/db/migrate/20171002160808_create_miscellaneous_np_infos.rb

10 lines
220 B
Ruby
Raw Normal View History

class CreateMiscellaneousNpInfos < ActiveRecord::Migration
def change
create_table :miscellaneous_np_infos do |t|
t.string :donate_again_url
t.belongs_to :nonprofit
t.timestamps
end
end
end