mirror of
https://github.com/internetee/registry.git
synced 2025-07-25 20:18:22 +02:00
5 lines
130 B
Ruby
5 lines
130 B
Ruby
class AddCancelledAtToInvoice < ActiveRecord::Migration
|
|
def change
|
|
add_column :invoices, :cancelled_at, :datetime
|
|
end
|
|
end
|