From ab990b9c7959c361b879f0e979cfd6ec4c6f7477 Mon Sep 17 00:00:00 2001 From: Ivan Ganev Date: Thu, 8 Aug 2024 15:46:25 +0300 Subject: [PATCH] fmt --- src/metadata/consts.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/metadata/consts.rs b/src/metadata/consts.rs index bbdbc31..0e0d6f4 100644 --- a/src/metadata/consts.rs +++ b/src/metadata/consts.rs @@ -17,7 +17,6 @@ pub const METADATA_CASCADE: &str = "cascade"; /// constraint action value SET NULL pub const METADATA_SET_NULL: &str = "set_null"; - /// for numerical datatypes of columns pub const METADATA_FLAG_UNSIGNED: &str = "unsigned"; @@ -26,6 +25,7 @@ pub const METADATA_FLAG_NULLABLE: &str = "nullable"; /// for marking primary keys pub const METADATA_FLAG_PRIMARY: &str = "primary"; + /// for marking unique indexes pub const METADATA_FLAG_UNIQUE: &str = "unique";