rails-guide-store/db/migrate/20250122194822_create_subscribers.rb

11 lines
225 B
Ruby
Raw Normal View History

2025-01-24 17:32:29 +00:00
class CreateSubscribers < ActiveRecord::Migration[8.0]
def change
create_table :subscribers do |t|
t.belongs_to :product, null: false, foreign_key: true
t.string :email
t.timestamps
end
end
end