summaryrefslogtreecommitdiff
path: root/db/migrate/20230322234003_create_addresses.rb
blob: ff360854009e3ff7ad0c91cbd79586831a8ab795 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class CreateAddresses < ActiveRecord::Migration[7.0]
  def change
    create_table :addresses do |t|
      t.string :number
      t.string :street
      t.string :zip_code
      t.string :country
      t.string :city

      t.timestamps
    end
  end
end