mirror of
https://github.com/internetee/registry.git
synced 2025-05-18 02:09:39 +02:00
6 lines
165 B
Ruby
6 lines
165 B
Ruby
class AddStreetsToAddress < ActiveRecord::Migration
|
|
def change
|
|
add_column :addresses, :street2, :string
|
|
add_column :addresses, :street3, :string
|
|
end
|
|
end
|