database updated to create domain crendtial references

This commit is contained in:
2026-04-30 15:18:51 +00:00
parent 791034f7a4
commit 92ceddc32e
5 changed files with 30 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
class CreateDomainsAdmins < ActiveRecord::Migration[8.1]
def change
create_table :domains_admins, id: false do |t|
t.belongs_to :users
t.belongs_to :domains
end
end
end