File: //usr/lib/python3/dist-packages/trac/upgrades/__pycache__/db7.cpython-310.pyc
o
�k�`� � @ s g d �Z dd� ZdS ))z6CREATE TEMPORARY TABLE wiki_old AS SELECT * FROM wiki;zDROP TABLE wiki;a5 CREATE TABLE wiki (
name text,
version integer,
time integer,
author text,
ipnr text,
text text,
comment text,
readonly integer,
UNIQUE(name,version)
);z�INSERT INTO wiki(name,version,time,author,ipnr,text,comment,readonly) SELECT name,version,time,author,ipnr,text,comment,0 FROM wiki_old;c C s t D ]}|�|� qd S )N)�sql�execute)�env�ver�cursor�s� r �3/usr/lib/python3/dist-packages/trac/upgrades/db7.py�
do_upgrade s �r N)r r r r r r �<module> s