first commit, largely copied volunteers

This commit is contained in:
2023-10-25 22:14:53 +03:00
commit 608b4f6ddf
222 changed files with 5121 additions and 0 deletions

View File

@ -0,0 +1,12 @@
class CreateMembers < ActiveRecord::Migration[7.0]
def change
create_table :members do |t|
t.string :name
t.string :bio
t.string :picture
t.boolean :public
t.timestamps
end
end
end