From cbd5443c6d1e8a95d0dc00c4056e15581af4b0a3 Mon Sep 17 00:00:00 2001 From: sunary Date: Wed, 9 Oct 2024 06:36:02 +0700 Subject: [PATCH] gen comment compatible with most of dbs --- sqlize.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sqlize.go b/sqlize.go index 5ea56f4..c19d222 100644 --- a/sqlize.go +++ b/sqlize.go @@ -15,8 +15,8 @@ import ( ) const ( - genDescription = "# generate by sqlize\n\n" - emptyMigration = "# empty" + genDescription = "/* generate by sqlize */\n\n" + emptyMigration = "/* empty */" ) // Sqlize ...