如何在SQLAlchemy上声明Postgres函数?

时间:2019-01-23 21:22:45

标签: python postgresql orm sqlalchemy flask-sqlalchemy

我正在使用Flask-SQLAlchemy,并且我的表/模型的结构类似于

class TableName (db.Model):
    columnname = db.Column(db.String)

如何在其中插入Postgres自定义函数,以便SQLAlchemy知道呢?

我的意思是像

create function canonicalize (text) returns text as $$
  select $1;
$$ language sql;

0 个答案:

没有答案