10 lines
156 B
Ruby
10 lines
156 B
Ruby
|
class CreatePayments < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :payments do |t|
|
||
|
t.string :profile
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|