aboutsummaryrefslogblamecommitdiffstats
path: root/db/migrate/20241111162753_create_pdfresources.rb
blob: 5baf790c5214516f6012adb56e24a417b37377b7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                       
class CreatePdfresources < ActiveRecord::Migration[8.0]
  def change
    create_table :pdfresources do |t|
      t.string :name
      t.string :stripe_product_id
      t.decimal :price
      t.string :age_range
      t.string :curriculum
      t.integer :feature_slot
      t.text :description
      t.text :card_description

      t.timestamps
    end
  end
end