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

8 lines
116 B
Ruby

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