6 lines
134 B
Ruby
6 lines
134 B
Ruby
class AddTelToAnnonceAccounts < ActiveRecord::Migration
|
|
def change
|
|
add_column :annonce_accounts, :tel_number, :string
|
|
end
|
|
end
|