cartodb/db/migrate/20130212112825_add_updated_at_to_maps.rb
2020-06-15 10:58:47 +08:00

8 lines
114 B
Ruby

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