copy timeline here

This commit is contained in:
2023-06-18 11:23:46 +03:00
parent 818af2f5e9
commit def9e6083d
10 changed files with 126 additions and 10 deletions

View File

@ -0,0 +1,6 @@
class FixColumnName < ActiveRecord::Migration[7.0]
def change
rename_column :members, :left, :leaving
rename_column :members, :arrived, :arriving
end
end