10 lines
193 B
Ruby
Executable File
10 lines
193 B
Ruby
Executable File
class CreateWishes < ActiveRecord::Migration
|
|
def change
|
|
create_table :wishes do |t|
|
|
t.references :customer
|
|
t.references :need
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|