8 lines
110 B
Ruby
8 lines
110 B
Ruby
Sequel.migration do
|
|
change do
|
|
alter_table :layers do
|
|
add_column :tooltip, :text
|
|
end
|
|
end
|
|
end
|