Sha256: e44b42c2d2d9e57e61dc04f62464a819db5ee230a5552fe9c0882025af8d8fbf
Contents?: true
Size: 448 Bytes
Versions: 7
Compression:
Stored size: 448 Bytes
Contents
class CreatePaySubscriptions < ActiveRecord::Migration[4.2] def change create_table :pay_subscriptions do |t| t.references :owner t.string :name, null: false t.string :processor, null: false t.string :processor_id, null: false t.string :processor_plan, null: false t.integer :quantity, default: 1, null: false t.datetime :trial_ends_at t.datetime :ends_at t.timestamps end end end
Version data entries
7 entries across 7 versions & 1 rubygems