Add users controller

This commit is contained in:
sto
2025-03-14 16:37:21 +01:00
parent 50280ce389
commit 026bda2a99
14 changed files with 110 additions and 6 deletions

View File

@@ -0,0 +1,5 @@
class AddUsernameToUser < ActiveRecord::Migration[8.0]
def change
add_column :users, :username, :string
end
end