Nested routes and database changes that are required

Basic home screen
Model and controller tests coming along
This commit is contained in:
2023-06-21 07:08:25 +01:00
parent bfd5d8533e
commit b76375d086
9 changed files with 85 additions and 14 deletions

View File

@@ -0,0 +1,8 @@
class AddDomainIdToVirtuals < ActiveRecord::Migration[7.0]
def change
add_column :virtuals, :domain_id, :integer
add_column :credentials, :domain_id, :integer
add_index :virtuals, :domain_id
add_index :credentials, :domain_id
end
end