special offers backoffice is ready now
This commit is contained in:
10
front-api/db/migrate/20150315074249_add_flags_to_cart.rb
Normal file
10
front-api/db/migrate/20150315074249_add_flags_to_cart.rb
Normal file
@@ -0,0 +1,10 @@
|
||||
class AddFlagsToCart < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :carts, :confirmed, :boolean, default: false
|
||||
add_column :carts, :packed, :boolean, default: false
|
||||
add_column :carts, :canceled_on_check, :boolean, default: false
|
||||
add_column :carts, :canceled_on_delivery, :boolean, default: false
|
||||
add_column :carts, :delivered, :boolean, default: false
|
||||
add_column :carts, :internal_note, :text
|
||||
end
|
||||
end
|
||||
19
front-api/db/migrate/20150318044804_create_special_offers.rb
Normal file
19
front-api/db/migrate/20150318044804_create_special_offers.rb
Normal file
@@ -0,0 +1,19 @@
|
||||
class CreateSpecialOffers < ActiveRecord::Migration
|
||||
def change
|
||||
create_table :special_offers do |t|
|
||||
t.string :image_url
|
||||
t.boolean :start_page
|
||||
t.integer :section_id
|
||||
t.integer :category_id
|
||||
t.integer :sub_category_id
|
||||
t.integer :item_id
|
||||
t.boolean :thank_you_page
|
||||
t.boolean :search_result_page
|
||||
t.boolean :checkout_page
|
||||
t.date :beginning
|
||||
t.date :ending
|
||||
|
||||
t.timestamps null: false
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,5 @@
|
||||
class AddSpecialOfferToItem < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :items, :special_offer_id, :integer
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user