6 lines
126 B
Ruby
Executable File
6 lines
126 B
Ruby
Executable File
class AddCreatedByToPayments < ActiveRecord::Migration
|
|
def change
|
|
add_column :payments, :created_by, :integer
|
|
end
|
|
end
|