Newer
Older
erflute_custom / src / org / dbflute / erflute / db / impl / postgres / PostgresTableProperties.java
ε‹δ½ζ…ŽδΉŸ on 22 Jun 557 bytes First Commit
package org.dbflute.erflute.db.impl.postgres;

import org.dbflute.erflute.editor.model.diagram_contents.element.node.table.properties.TableProperties;

public class PostgresTableProperties extends TableProperties {

    private static final long serialVersionUID = 1L;

    private boolean withoutOIDs;

    public PostgresTableProperties() {
        this.withoutOIDs = true;
    }

    public boolean isWithoutOIDs() {
        return withoutOIDs;
    }

    public void setWithoutOIDs(boolean withoutOIDs) {
        this.withoutOIDs = withoutOIDs;
    }
}