You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here's a sample migration new users can run to get the database working. Just including this here to save someone else some time...
class AddShoppingCartSchema < ActiveRecord::Migration
def change
create_table :carts do |t|
end
create_table :cart_items do |t|
t.shopping_cart_item_fields # Creates the cart items fields
end
end
end
The text was updated successfully, but these errors were encountered:
Here's a sample migration new users can run to get the database working. Just including this here to save someone else some time...
The text was updated successfully, but these errors were encountered: