11 lines
206 B
Ruby
11 lines
206 B
Ruby
class CreateAnnoncePdvs < ActiveRecord::Migration
|
|
def change
|
|
create_table :annonce_pdvs do |t|
|
|
t.string :marque
|
|
t.string :bien_type
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|