Sha256: 0b80b15efed6d5d49c57d271d6045843a9b1a351f8bcd60647cf2ada47d08b48
Contents?: true
Size: 494 Bytes
Versions: 15
Compression:
Stored size: 494 Bytes
Contents
class CreateSisCoreUsers < ActiveRecord::Migration[6.0] def change create_table :sis_core_users do |t| t.string :first_name, null: false t.string :last_name, null: false t.string :email, null: false t.boolean :active, default: true t.string :password_digest, null: false t.string :reset_password_token t.datetime :reset_password_sent_at t.string :secret_question t.string :secret_question_answer t.timestamps end end end
Version data entries
15 entries across 15 versions & 1 rubygems