class AddSubscriptionRecords < ActiveRecord::Migration def self.up create_table :subscription_records do |t| t.integer :subscription_id t.integer :amount t.timestamps end add_index :subscription_records, :subscription_id end def self.down drop_table :subscription_records end end