mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-25 01:14:43 +00:00
10 lines
187 B
Ruby
10 lines
187 B
Ruby
class AddFinishedAtToMatches < ActiveRecord::Migration[7.0]
|
|
def up
|
|
add_column :matches, :finished_at, :datetime
|
|
end
|
|
|
|
def down
|
|
remove_column :matches, :finished_at
|
|
end
|
|
end
|