shopping cart

This commit is contained in:
Karol Selak 2021-03-22 02:25:17 +01:00
parent 733870ce96
commit df7585c5e1
11 changed files with 79 additions and 11 deletions

View file

@ -0,0 +1,10 @@
class CreateBooksUsers < ActiveRecord::Migration[6.1]
def change
create_table :books_users do |t|
t.belongs_to :book
t.belongs_to :user
t.timestamps
end
end
end