blob: 5baf790c5214516f6012adb56e24a417b37377b7 (
plain) (
tree)
|
|
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
|