aboutsummaryrefslogtreecommitdiff
path: root/db/migrate/20240224164039_create_users.rb
blob: cfd4944bbbe7639443808cff5ab7fc587b25df1c (plain)
1
2
3
4
5
6
7
8
9
10
class CreateUsers < ActiveRecord::Migration[7.1]
  def change
    create_table :users do |t|
      t.string :username, null: false, index: { unique: true }
      t.string :password_digest

      t.timestamps
    end
  end
end