solidus

https://github.com/solidusio/solidus

Ruby

🛒 Solidus, the open-source eCommerce framework for industry trailblazers.

AddFinalizedToSpreeAdjustments#change

This migration replaces the open/closed state column of spree_adjustments
with a finalized boolean.
This may cause a few minutes of downtime on very large stores as the
adjustments table can become quite large.

Source | Google | Stack overflow

Edit

git clone [email protected]:solidusio/solidus.git

cd solidus

open core/db/migrate/20150811211025_add_finalized_to_spree_adjustments.rb

Contribute

# Make a new branch

git checkout -b -your-name--update-docs-AddFinalizedToSpreeAdjustments-change-for-pr


# Commit to git

git add core/db/migrate/20150811211025_add_finalized_to_spree_adjustments.rbgit commit -m "better docs for AddFinalizedToSpreeAdjustments#change"


# Open pull request

gem install hub # on a mac you can `brew install hub`

hub fork

git push <your name> -your-name--update-docs-AddFinalizedToSpreeAdjustments-change-for-pr

hub pull-request


# Celebrate!