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

8 lines
119 B
Ruby

Sequel.migration do
change do
alter_table :user_tables do
add_column :description, :text
end
end
end