Sha256: 2ddd683777c7df35dcb578f4a272d0ada61f252336e84d54ee47dabeb6f5258b
Contents?: true
Size: 348 Bytes
Versions: 25
Compression:
Stored size: 348 Bytes
Contents
class CreateSmtpSettings < ActiveRecord::Migration[5.1] def change create_table :smtp_settings do |t| t.string :address t.string :port t.string :domain_name t.string :email t.string :password t.integer :setting_id t.timestamps null: false end add_index :smtp_settings, :setting_id end end
Version data entries
25 entries across 24 versions & 1 rubygems