schema-export
目的 Purpose
Uses Hibernate's SchemaExport tool to generate DDL or export the schema.使用例 Examples
grails schema-export grails schema-export --datasource=lookup grails prod schema-export grails dev schema-export grails prod schema-export export grails prod schema-export export --datasource=auditing grails prod schema-export stdout
詳細 Description
使用方法: Usage:
grails [environment] schema-export [action] ['stdout'] [filename] [--datasource]
Arguments:
environment
- The environment containing the database configuration to use (dev, prod, etc...).action
- Either 'generate' or 'export'. The default is 'generate'. Specifying 'export' will execute the script against the specified environment's database instead of just generating the ddl file.stdout
- Passing 'stdout' will cause the script to dump the ddl to stdout.filename
- The name of the file to write the ddl to. The default is ddl.sql in the project's 'target' directory.datasource
- TheDataSource
name suffix; defaults to the defaultDataSource
if not specified