contactUs/db/migrate/20230501112440_create_emails.rb
2023-05-01 15:11:01 +03:30

8 lines
148 B
Ruby

class CreateEmails < ActiveRecord::Migration[6.0]
def change
create_table :emails do |t|
t.string :email, null: false
end
end
end