public override object Clone()
        {
            SQLitePrimaryKeyColumnConstraint res = new SQLitePrimaryKeyColumnConstraint(ConstraintName);

            res._autoincrement = _autoincrement;
            res._order         = _order;
            res._conf          = _conf;
            return(res);
        }
        public override bool Equals(object obj)
        {
            if (obj == null)
            {
                return(false);
            }

            SQLitePrimaryKeyColumnConstraint dst = obj as SQLitePrimaryKeyColumnConstraint;

            if (dst == null)
            {
                return(false);
            }

            if (_autoincrement != dst._autoincrement || _order != dst._order || _conf != dst._conf)
            {
                return(false);
            }

            return(base.Equals(obj));
        }