improve events

This commit is contained in:
Torsten
2023-06-12 15:47:54 +03:00
parent d2eaacaaad
commit 15ccc5eedb
19 changed files with 100 additions and 49 deletions

View File

@ -0,0 +1,6 @@
class AddInfoToEvents < ActiveRecord::Migration[7.0]
def change
add_column :events, :info, :string
add_column :profiles, :info, :string
end
end