comparison examples/trac/trac/upgrades/db6.py @ 39:93b4dcbafd7b trunk

Copy Trac to main branch.
author cmlenz
date Mon, 03 Jul 2006 18:53:27 +0000
parents
children
comparison
equal deleted inserted replaced
38:ee669cb9cccc 39:93b4dcbafd7b
1 sql = """
2 CREATE TABLE ticket_custom (
3 ticket integer,
4 name text,
5 value text,
6 UNIQUE(ticket,name)
7 );
8 """
9
10 def do_upgrade(env, ver, cursor):
11 cursor.execute(sql)
12
Copyright (C) 2012-2017 Edgewall Software