mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
Add distributor info field to enterprises
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
# This migration comes from enterprises_distributor_info_rich_text_feature (originally 20130426022945)
|
||||
class AddDistributorInfoToEnterprises < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :enterprises, :distributor_info, :text
|
||||
end
|
||||
end
|
||||
@@ -11,7 +11,7 @@
|
||||
#
|
||||
# It's strongly recommended to check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(:version => 20130118031610) do
|
||||
ActiveRecord::Schema.define(:version => 20130426023034) do
|
||||
|
||||
create_table "cms_blocks", :force => true do |t|
|
||||
t.integer "page_id", :null => false
|
||||
@@ -156,6 +156,7 @@ ActiveRecord::Schema.define(:version => 20130118031610) do
|
||||
t.string "next_collection_at"
|
||||
t.datetime "created_at", :null => false
|
||||
t.datetime "updated_at", :null => false
|
||||
t.text "distributor_info"
|
||||
end
|
||||
|
||||
create_table "exchange_fees", :force => true do |t|
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
class AddDistributorInfoToEnterprises < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :enterprises, :distributor_info, :text
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user