11 lines
200 B
Ruby
11 lines
200 B
Ruby
class CreateAnnonceInfs < ActiveRecord::Migration
|
|
def change
|
|
create_table :annonce_infs do |t|
|
|
t.string :bien_type
|
|
t.string :marque
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|