]> git.openstreetmap.org Git - rails.git/blob - db/migrate/20241030090336_add_user_location_name.rb
Add frozen_string_literal comments to ruby files
[rails.git] / db / migrate / 20241030090336_add_user_location_name.rb
1 # frozen_string_literal: true
2
3 class AddUserLocationName < ActiveRecord::Migration[7.2]
4   def change
5     add_column :users, :home_location_name, :string
6   end
7 end