cartodb-4.42/db/migrate/20130212112825_add_updated_at_to_maps.rb
2024-04-06 05:25:13 +00:00

8 lines
114 B
Ruby

Sequel.migration do
change do
alter_table :maps do
add_column :updated_at, DateTime
end
end
end