maxtepkeev / architect

A set of tools which enhances ORMs written in Python with more features
Other
391 stars 57 forks source link

added multi column support for postgres #78

Open xialingxiao opened 4 years ago

xialingxiao commented 4 years ago

to install it to a django model (using the example used in the test case of this commit)

@architect.install(
    "partition",
    type="range",
    subtypes=["integer", "date"],
    constraints=["1", "month"],
    columns=["source_file_id", "date"],
)
ghost commented 3 years ago

@maxtepkeev is this not merged because of the failed checks or code/architecture issues? If I get the checks to pass, would this be merged?

I'm very interested in adding the support for multi column.