20181102170319_create_characters.rb 289 B

123456789101112131415
  1. class CreateCharacters < ActiveRecord::Migration[5.2]
  2. def change
  3. create_table :characters do |t|
  4. t.string :name
  5. t.integer :health
  6. t.integer :strength
  7. t.integer :intelligence
  8. t.integer :agility
  9. t.integer :luck
  10. t.timestamps
  11. end
  12. end
  13. end