cartodb-4.42/db/migrate/20120912121006_add_order_to_layers.rb

8 lines
111 B
Ruby
Raw Normal View History

2024-04-06 13:25:13 +08:00
Sequel.migration do
change do
alter_table :layers do
add_column :order, :integer
end
end
end