diff --git a/README.md b/README.md index d75f1cd..14465cd 100755 --- a/README.md +++ b/README.md @@ -49,9 +49,15 @@ optionsBuilder.UseMySql(connectionString, serverVersion); ## Usage You can invoke one of the following actions: - Create a new migration. Specify its name beforehand and click `[+]` button on the right. -- List migrations. This action does nothing but lists already existing migrations. -- Remove most recent migration. This action removes most recent migration from **the code**. Nothing will happen on the actual database. -- Generate migration script. This action opens default text editor with SQL code of all migrations for you to review. +- General actions: + - List migrations. This action does nothing but lists already existing migrations. + - Generate migration script. This action opens default text editor with SQL code of all migrations for you to review. + - Generate optimized model. +- Last migration actions: + - Remove from code. This action removes most recent migration from **the code**. Nothing will happen on the actual database. Will fail if the migration is already applied on database - in that case, use "Generate rollback script" action first. + - Generate apply script. This actions generates SQL script of last migration for you to review and manually apply. + - Generate rollback script. This action generates SQL script that rolls back last migration for you to review and manually apply. + ## Other screenshots diff --git a/images/main.png b/images/main.png index 8b7ec10..8f04ce5 100644 Binary files a/images/main.png and b/images/main.png differ diff --git a/images/profile-settings.png b/images/profile-settings.png index d96cf30..e1ad6ea 100644 Binary files a/images/profile-settings.png and b/images/profile-settings.png differ