cartodb/db/migrate/20130212094523_add_updated_at_to_layers.rb

8 lines
116 B
Ruby
Raw Normal View History

2020-06-15 10:58:47 +08:00
Sequel.migration do
change do
alter_table :layers do
add_column :updated_at, DateTime
end
end
end