4 lines
162 B
Python
4 lines
162 B
Python
from psycopg.sql import SQL, Identifier, Literal
|
|
|
|
print(SQL("{} SERIAL NOT NULL").format(Identifier("asset_ref")))
|
|
print(Identifier("asset_ref").as_string(None))
|