Initial commit

This commit is contained in:
2026-05-18 13:17:28 -04:00
committed by GitHub
commit 16fadfd529
91 changed files with 3321 additions and 0 deletions
@@ -0,0 +1,6 @@
class AddRoleToUsers < ActiveRecord::Migration[7.2]
def change
add_column :users, :role, :integer, default: 0, null: false
add_index :users, :role
end
end