mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-04-05 20:31:00 +08:00
Clarify usage of --no-comments in mdb-schema
This commit is contained in:
parent
a5e1ab8a2e
commit
13e339c1a4
@ -21,6 +21,8 @@ OPTIONS
|
||||
--no-default-values Don't issue DEFAULT values. This is the default.
|
||||
--not-empty Issue CHECK <> '' constraints.
|
||||
--no-not-empty Don't issue CHECK <> '' constraints. This is the default.
|
||||
--comments Issue COMMENT ON statements with column/table descriptions. This is the default, but it's not supported by all backends.
|
||||
--no-comments Don't issue COMMENT ON statements.
|
||||
--indexes Export INDEXes. This is the default.
|
||||
--no-indexes Don't export INDEXes.
|
||||
--relations Export foreign keys constraints. This is the default.
|
||||
|
@ -49,8 +49,8 @@ main (int argc, char **argv)
|
||||
{ "no-default-values", 0, G_OPTION_FLAG_REVERSE, G_OPTION_ARG_NONE, &opt_def_values, "Don't include default values", NULL},
|
||||
{ "not-empty", 0, 0, G_OPTION_ARG_NONE, &opt_not_empty, "Include not empty constraints", NULL},
|
||||
{ "no-not_empty", 0, G_OPTION_FLAG_REVERSE, G_OPTION_ARG_NONE, &opt_not_empty, "Don't include not empty constraints", NULL},
|
||||
{ "comments", 0, 0, G_OPTION_ARG_NONE, &opt_comments, "Include comments", NULL},
|
||||
{ "no-comments", 0, G_OPTION_FLAG_REVERSE, G_OPTION_ARG_NONE, &opt_comments, "Don't include comments", NULL},
|
||||
{ "comments", 0, 0, G_OPTION_ARG_NONE, &opt_comments, "Include COMMENT ON statements", NULL},
|
||||
{ "no-comments", 0, G_OPTION_FLAG_REVERSE, G_OPTION_ARG_NONE, &opt_comments, "Don't include COMMENT statements.", NULL},
|
||||
{ "indexes", 0, 0, G_OPTION_ARG_NONE, &opt_indexes, "Include indexes", NULL},
|
||||
{ "no-indexes", 0, G_OPTION_FLAG_REVERSE, G_OPTION_ARG_NONE, &opt_indexes, "Don't include indexes", NULL},
|
||||
{ "relations", 0, 0, G_OPTION_ARG_NONE, &opt_relations, "Include foreign key constraints", NULL},
|
||||
|
Loading…
Reference in New Issue
Block a user