14 lines
276 B
Ruby
14 lines
276 B
Ruby
class CreateSubprojectAddresses < ActiveRecord::Migration[8.0]
|
|
def change
|
|
create_table :subproject_addresses do |t|
|
|
t.string :streetname
|
|
t.string :zipcode
|
|
t.string :city
|
|
t.string :country
|
|
t.text :notes
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|