ぼざクリ タグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
319 B

  1. class CreateUsers < ActiveRecord::Migration[7.0]
  2. def change
  3. create_table :users do |t|
  4. t.string :name, limit: 255
  5. t.string :inheritance_code, limit: 64, null: false
  6. t.string :role, limit: 255, null: false
  7. t.boolean :banned, default: false, null: false
  8. t.timestamps
  9. end
  10. end
  11. end