class CreateCanceledAccounts < ActiveRecord::Migration def change create_table :canceled_accounts do |t| t.string :name t.string :keyword t.string :billing_email t.text :memberships t.belongs_to :plan t.datetime :started_at t.timestamps end end end