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

9 lines
153 B
Ruby

Sequel.migration do
up do
SequelRails.connection.run("UPDATE layers SET updated_at = NOW() WHERE updated_at IS NULL")
end
down do
end
end