20161107123537_create_passes.rb 211 B

123456789101112
  1. class CreatePasses < ActiveRecord::Migration[5.0]
  2. def change
  3. create_table :passes do |t|
  4. t.string :Firstname
  5. t.string :Lastname
  6. t.string :Patronymic
  7. t.timestamps
  8. end
  9. end
  10. end