From 924fee5df70a83ba89edac83cdc16c5e451f3f16 Mon Sep 17 00:00:00 2001 From: Alexis Viscogliosi Date: Tue, 5 Nov 2024 09:59:22 +0100 Subject: [PATCH] feat: add SQL compatibility to the list of features --- docs/docs/index.md | 1 + readme.md | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/docs/index.md b/docs/docs/index.md index 259a25c..69db860 100644 --- a/docs/docs/index.md +++ b/docs/docs/index.md @@ -31,6 +31,7 @@ This library offer to you a new way to create migrations in Go with a powerful A ## Features - **Go Language**: The library allows you to write migrations in Go, making it easy to define schema changes in a programming language you are already familiar with. +- **SQL Compatibility**: The library supports SQL databases and allows you to write .SQL migrations. - **Type Safety**: Writing migrations in Go provides you with all the language's benefits, including type safety, simplicity, and strong tooling support. - **Version Control**: Migrations are version controlled. - **Auto Down Migration**: The library generates down migrations when it's possible. diff --git a/readme.md b/readme.md index d9e29a6..4beba52 100644 --- a/readme.md +++ b/readme.md @@ -30,6 +30,7 @@ This library offer to you a new way to create migrations in Go with a powerful A ## Features - **Go Language**: The library allows you to write migrations in Go, making it easy to define schema changes in a programming language you are already familiar with. +- **SQL Compatibility**: The library supports SQL databases and allows you to write .SQL migrations. - **Type Safety**: Writing migrations in Go provides you with all the language's benefits, including type safety, simplicity, and strong tooling support. - **Version Control**: Migrations are version controlled. - **Auto Down Migration**: The library generates down migrations when it's possible.