Sha256: d4c9b95875825bea19ca4e292d63c9733286ee2c578fa04d05e8ac1767cba4b1
Contents?: true
Size: 416 Bytes
Versions: 2
Compression:
Stored size: 416 Bytes
Contents
# frozen_string_literal: true class CreateMagicLinks < ActiveRecord::Migration[<%= ActiveRecord::Migration.current_version.to_s %>] def change create_table :magic_links do |t| t.integer :keyring_id, null: false t.text :code_digest, null: false t.binary :encrypted_code, null: false t.datetime :expires_at, null: false t.datetime :created_at, null: false end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
simple_auth-magic_link-0.0.2 | lib/simple_auth/magic_link/templates/migration.erb |
simple_auth-magic_link-0.0.1 | lib/simple_auth/magic_link/templates/migration.erb |