Sha256: 9a914bf781a8951a573dfb261700cd57223ab30cd56358b5241231d3965f6eb3

Contents?: true

Size: 287 Bytes

Versions: 2

Compression:

Stored size: 287 Bytes

Contents

class CreateSisCoreApplicants < ActiveRecord::Migration[6.0]
  def change
    create_table :sis_core_applicants do |t|
      t.string :full_name, null: false
      t.string :email, null: false, unique: true
      t.string :phone_number, null: false

      t.timestamps
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
sis_core-1.0.5 db/migrate/20200106133937_create_sis_core_applicants.rb
sis_core-1.0.4 db/migrate/20200106133937_create_sis_core_applicants.rb