Azavea.Open.DAO.PostgreSQL.PostgreSqlDaLayer.GetAsciiStringType C# (CSharp) Method

GetAsciiStringType() protected method

PostgreSQL encoding is specified by the database not by the column, so we just use TEXT again.
protected GetAsciiStringType ( ) : string
return string
        protected override string GetAsciiStringType()
        {
            return "TEXT";
        }