10 lines
177 B
Ruby
10 lines
177 B
Ruby
class CreateAnnoncePets < ActiveRecord::Migration
|
|
def change
|
|
create_table :annonce_pets do |t|
|
|
t.string :bien_type
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|