Sha256: 6589445f07d8a1b483d0331b4a2fd30340782b40562e68b1466cd24e8493bd49
Contents?: true
Size: 286 Bytes
Versions: 4
Compression:
Stored size: 286 Bytes
Contents
class CreatePlans < ActiveRecord::Migration def change create_table :plans do |t| t.decimal :monthly_price, precision: 24, scale: 6 t.decimal :annually_price, precision: 24, scale: 6 t.string :currency, limit: 3 t.timestamps null: false end end end
Version data entries
4 entries across 4 versions & 1 rubygems