10 lines
174 B
Ruby
10 lines
174 B
Ruby
class CreateAnnonceTels < ActiveRecord::Migration
|
|
def change
|
|
create_table :annonce_tels do |t|
|
|
t.string :marque
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|