Ejemplo n.º 1
0
def parser ( parser ):
    base.with_psql_arguments(
        parser
    ).add_argument('--uninstall', action='store_true',
        help='uninstall the migrations schema instead'
    )

    return parser
Ejemplo n.º 2
0
def parser(parser):
    base.with_schema_file(base.with_migration_path(base.with_psql_arguments(parser)))

    parser.add_argument("MIGRATION_NAME", help="the name of the migration to apply")

    parser.add_argument(
        "-u",
        "--up-from",
        action="store_const",
        const=True,
        dest="direction",
        default=True,
        help='apply the migration in the "UP" direction',
    )

    parser.add_argument(
        "-D",
        "--down-to",
        action="store_const",
        const=False,
        dest="direction",
        help='apply the migration in the "DOWN" direction',
    )

    parser.add_argument(
        "--dump",
        action="store_const",
        const=True,
        dest="dump_schema",
        default=False,
        help="Also dump the contents of the DB schema into SCHEMA_FILE if successful",
    )
Ejemplo n.º 3
0
def parser ( parser ):
    base.with_migration_path(
    base.with_psql_arguments(
        parser
    )).add_argument('MIGRATION_FILE',
        help='the path to the migration file to register'
    )