opensmtpd_rails_frontend/db/migrate/20230510184959_create_credentials.rb

11 lines
190 B
Ruby

class CreateCredentials < ActiveRecord::Migration[7.0]
def change
create_table :credentials do |t|
t.string :email
t.string :password
t.timestamps
end
end
end