comparison roundup/backends/back_postgresql.py @ 6913:b0dbc13a835a

fix missed renaming from revision 98d3bf8ffb19 done 2004-04-18
author John Rouillard <rouilj@ieee.org>
date Sun, 04 Sep 2022 00:43:29 -0400
parents bdd28b244839
children b5062cb5c2a2
comparison
equal deleted inserted replaced
6912:a23eaa3013e6 6913:b0dbc13a835a
302 sql = 'alter table sessions alter column session_time type float' 302 sql = 'alter table sessions alter column session_time type float'
303 self.sql(sql) 303 self.sql(sql)
304 sql = 'alter table otks alter column otk_time type float' 304 sql = 'alter table otks alter column otk_time type float'
305 self.sql(sql) 305 self.sql(sql)
306 306
307 def add_actor_column(self): 307 def add_new_columns_v2(self):
308 # update existing tables to have the new actor column 308 # update existing tables to have the new actor column
309 tables = self.database_schema['tables'] 309 tables = self.database_schema['tables']
310 for name in tables: 310 for name in tables:
311 self.sql('ALTER TABLE _%s add __actor VARCHAR(255)'%name) 311 self.sql('ALTER TABLE _%s add __actor VARCHAR(255)'%name)
312 312

Roundup Issue Tracker: http://roundup-tracker.org/