Some checks failed
CI / scan_ruby (push) Has been cancelled
CI / scan_js (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / test (push) Has been cancelled
10 lines
225 B
Ruby
10 lines
225 B
Ruby
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
|