16 lines
413 B
Markdown
16 lines
413 B
Markdown
# YouTube Manager
|
|
Server application for managing YouTube content and managing a local library.
|
|
|
|
### Migrations
|
|
Using migrations using the .NET CLI
|
|
|
|
Add migration
|
|
```shell
|
|
dotnet ef migrations add <MigrationName> --project Manager.Data --context Manager.Data.Contexts.AppDbContext
|
|
```
|
|
Update the database
|
|
```shell
|
|
dotnet ef database update --project Manager.Data --context Manager.Data.Contexts.AppDbContext
|
|
```
|
|
|