databaseOptions top-level property
Implementation
final List<Option> databaseOptions = [
Option(
name: '--charset',
description: 'Pass charset option to dialect, MYSQL only',
args: [
Arg(
name: 'charset option'
)
]
),
Option(
name: '--collate',
description: 'Pass collate option to dialect',
args: [
Arg(
name: 'collate option'
)
]
),
Option(
name: '--encoding',
description: 'Pass encoding option to dialect, PostgreSQL only',
args: [
Arg(
name: 'encoding option'
)
]
),
Option(
name: '--ctype',
description: 'Pass ctype option to dialect, PostgreSQL only',
args: [
Arg(
name: 'ctype optio'
)
]
),
Option(
name: '--template',
description: 'Pass template option to dialect, PostgreSQL only',
args: [
Arg(
name: 'template optio'
)
]
)
];