Hello,
I am on the Lily server and was wondering, with no control panel or SSH access, how I would migrate my databases? Usually the steps are as follows:
Install EF Core CLI Tools:
dotnet tool install --global dotnet-ef
Create The Migrations:
dotnet ef migrations add InitialCreate
create the schema on the database itself:
dotnet ef database update
However, with no SSH access I am at a loss on how to proceed. Apologies if this is a noob question I am very new to .Net Core.