20211209155645_create_users.rb 421 B

1234567891011121314151617181920
  1. class CreateUsers < ActiveRecord::Migration[6.1]
  2. def change
  3. create_table :users do |t|
  4. t.string :username
  5. t.string :full_name
  6. t.string :first_name
  7. t.string :last_name
  8. t.string :tagline
  9. t.string :bio
  10. t.string :country
  11. t.string :city
  12. t.string :password
  13. t.string :salt
  14. t.boolean :admin
  15. t.integer :visibility
  16. t.timestamps
  17. end
  18. end
  19. end