mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-31 21:37:16 +00:00
10 lines
158 B
Ruby
10 lines
158 B
Ruby
class DropOrderToken < ActiveRecord::Migration
|
|
def up
|
|
remove_column :orders, :token
|
|
end
|
|
|
|
def down
|
|
add_column :orders, :token, :string
|
|
end
|
|
end
|