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

8 lines
113 B
Ruby

Sequel.migration do
change do
alter_table :groups do
add_column :auth_token, :text
end
end
end