add dates to members

This commit is contained in:
2023-01-12 14:56:50 +02:00
parent 3f53b6b21b
commit a2215359dc
8 changed files with 26 additions and 7 deletions

View File

@ -0,0 +1,6 @@
class AddArrivedToMemberss < ActiveRecord::Migration[7.0]
def change
add_column :members, :arrived, :date
add_column :members, :left, :date
end
end