6 lines
126 B
Ruby
6 lines
126 B
Ruby
|
class AddRemindedAtToAvis < ActiveRecord::Migration[6.1]
|
||
|
def change
|
||
|
add_column :avis, :reminded_at, :datetime
|
||
|
end
|
||
|
end
|