1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00
Files
wrestlingdev.com/db/migrate/20250122142911_add_finished_at_to_matches.rb

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