12 lines
232 B
Ruby
12 lines
232 B
Ruby
class CreateAnnonceGites < ActiveRecord::Migration
|
|
def change
|
|
create_table :annonce_gites do |t|
|
|
t.string :bien_type
|
|
t.integer :capacite
|
|
t.integer :nbr_rooms
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|