cartodb-4.42/db/migrate/20160803125905_add_auth_token_to_groups.rb

8 lines
113 B
Ruby
Raw Normal View History

2024-04-06 13:25:13 +08:00
Sequel.migration do
change do
alter_table :groups do
add_column :auth_token, :text
end
end
end