UNPKG

ionic-orm-2

Version:

Data-mapper ORM for Ionic WebSQL and SQLite

24 lines 852 B
/** * Primary key from the database stored in this class. */ /** * Primary key from the database stored in this class. */ export class PrimaryKeySchema { // ------------------------------------------------------------------------- // Constructor // ------------------------------------------------------------------------- constructor(name, columnName) { this.name = name; this.columnName = columnName; } // ------------------------------------------------------------------------- // Public Methods // ------------------------------------------------------------------------- /** * Creates a new copy of this primary key with exactly same properties. */ clone() { return new PrimaryKeySchema(this.name, this.columnName); } } //# sourceMappingURL=PrimaryKeySchema.js.map