Rewritten using quasar framework

This commit is contained in:
2022-11-30 00:37:19 +10:00
commit bca211f706
116 changed files with 6346 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
class CreateUsers < ActiveRecord::Migration[7.0]
def change
create_table :users do |t|
t.string :username
t.string :email
t.string :password_digest
t.timestamps
end
end
end