From d990fd54e9ed265fff767da0e59e2f28e6ac9947 Mon Sep 17 00:00:00 2001 From: Ben Lloyd Pearson Date: Tue, 28 Jun 2022 16:12:51 -0500 Subject: [PATCH] Update Readme content Remove the logo and add additional context behind this project. --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d30d79c..06ddae8 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,15 @@ -![](https://avatars.githubusercontent.com/u/80110794?s=200&v=4) +A database migration tool designed to make schema migrations easy. [![GitHub Workflow Status (branch)](https://img.shields.io/github/workflow/status/mattermost/morph/CI)](https://github.com/mattermost/morph/actions/workflows/ci.yml?query=branch%3Amaster) [![GoDoc](https://pkg.go.dev/badge/github.com/mattermost/migrate)](https://pkg.go.dev/github.com/mattermost/morph) # Morph - -Morph is a database migration tool that helps you to apply your migrations. It is written with Go so you can use it from your Go application as well. +As an application evolves, the data flowing inside inevitably evolves along with it. If you have an application that persists the data in a relational database, the way you store the data will probably change over time. Morph is a database migration tool that helps you to apply your migrations. It is written with Go so you can use it from your Go application as well. Read our [blog post](https://mattermost.com/blog/morph-database-schema-migrations-made-easy/) to learn more about the motivation behind this project. ## Usage -It can be used as a library or a CLI tool. +Morph can be used as a library or a CLI tool. ### Library