11 lines
202 B
Ruby
11 lines
202 B
Ruby
class CreateAnnoncePlays < ActiveRecord::Migration
|
|
def change
|
|
create_table :annonce_plays do |t|
|
|
t.string :bien_type
|
|
t.string :marque
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|