Sha256: 90e6792820419e6be55f80a926eff6e97cf56cf542718cb78d2ff92d65036f96
Contents?: true
Size: 415 Bytes
Versions: 1
Compression:
Stored size: 415 Bytes
Contents
# Used by the account verification feature create_table :<%= table_prefix %>_verification_keys, id: false do |t| t.<%= primary_key_type(nil) %> :id, primary_key: true t.foreign_key :<%= table_prefix.pluralize %>, column: :id t.string :key, null: false t.datetime :requested_at, null: false, default: <%= current_timestamp %> t.datetime :email_last_sent, null: false, default: <%= current_timestamp %> end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rodauth-rails-1.8.0 | lib/generators/rodauth/migration/active_record/verify_account.erb |