cartodb/db/migrate/20160803125905_add_auth_token_to_groups.rb
2020-06-15 10:58:47 +08:00

8 lines
113 B
Ruby

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