mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-31 21:37:16 +00:00
6 lines
133 B
Ruby
6 lines
133 B
Ruby
class AddApiKeyToUsers < ActiveRecord::Migration
|
|
def change
|
|
add_column :spree_users, :api_key, :string, :limit => 40
|
|
end
|
|
end
|