Starting companies and admin

This commit is contained in:
2022-02-08 17:33:34 +00:00
parent 0ff91bbf3a
commit 557b43c911
30 changed files with 934 additions and 5 deletions

View File

@@ -0,0 +1,8 @@
class CreateUsersAndCompanies < ActiveRecord::Migration[7.0]
def change
create_table :companies_users, id: false do |t|
t.belongs_to :user
t.belongs_to :company
end
end
end