android-schema-utils icon indicating copy to clipboard operation
android-schema-utils copied to clipboard

Android library for simplifying database schema and migrations management.

Results 2 android-schema-utils issues
Sort by recently updated
recently updated
newest added

``` java .add(new Schemas.AddColumn("order", "INTEGER")) ``` does not escape column name, if column name is keyword, it leads to invalid DSL statement. When trying to create multi-column index like this:...