mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-28 21:07:16 +00:00
Adding shop_trial_start_date column to enterprises
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
class AddShopTrialStartDateToEnterprises < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :enterprises, :shop_trial_start_date, :datetime, default: nil
|
||||
end
|
||||
end
|
||||
@@ -11,7 +11,7 @@
|
||||
#
|
||||
# It's strongly recommended to check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(:version => 20141010043405) do
|
||||
ActiveRecord::Schema.define(:version => 20141022050659) do
|
||||
|
||||
create_table "adjustment_metadata", :force => true do |t|
|
||||
t.integer "adjustment_id"
|
||||
@@ -264,11 +264,12 @@ ActiveRecord::Schema.define(:version => 20141010043405) do
|
||||
t.string "instagram"
|
||||
t.string "linkedin"
|
||||
t.integer "owner_id", :null => false
|
||||
t.string "sells", :default => "none", :null => false
|
||||
t.string "confirmation_token"
|
||||
t.datetime "confirmed_at"
|
||||
t.datetime "confirmation_sent_at"
|
||||
t.string "unconfirmed_email"
|
||||
t.string "sells", :default => "none", :null => false
|
||||
t.datetime "shop_trial_start_date"
|
||||
end
|
||||
|
||||
add_index "enterprises", ["address_id"], :name => "index_enterprises_on_address_id"
|
||||
|
||||
Reference in New Issue
Block a user