diff --git a/README.md b/README.md
index 7b0481b..adf266f 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# Entity Framework Migrations
+# Entity Framework
[![Build & Publish](https://github.com/badsyntax/vscode-entity-framework/actions/workflows/main.yml/badge.svg)](https://github.com/badsyntax/vscode-entity-framework/actions/workflows/main.yml)
@@ -26,7 +26,7 @@ A VS Code extension to manage Entity Framework migrations.
A [`Mermaid`](https://mermaid.js.org/syntax/entityRelationshipDiagram.html) [`.t4`](https://learn.microsoft.com/en-us/ef/core/managing-schemas/scaffolding/templates) template will be installed into the project. You can ignore this file (by adding it to `.gitignore`), or add it to source control. The template file is used to generate the ER Diagram, feel free to customise it. If you delete it, it will be regenerated next time you generate an ER Diagram.
-
+
## Extension Settings
diff --git a/package.json b/package.json
index 1ec2b74..c4f0eae 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "vscode-entity-framework",
- "displayName": "Entity Framework Migrations",
+ "displayName": "Entity Framework",
"description": "Manage Entity Framework migrations in VS Code",
"version": "0.0.0",
"engines": {
diff --git a/src/constants/constants.ts b/src/constants/constants.ts
index 9b7e837..cbd1467 100644
--- a/src/constants/constants.ts
+++ b/src/constants/constants.ts
@@ -2,7 +2,7 @@ export const EXTENSION_NAMESPACE = 'entityframework';
export const TERMINAL_NAME = 'dotnet ef';
-export const OUTPUT_CHANNEL_ID = 'Entity Framework Migrations';
+export const OUTPUT_CHANNEL_ID = 'Entity Framework';
// https://learn.microsoft.com/en-us/ef/core/providers
export const DEFAULT_EFCORE_PROVIDERS = [