Re: [web2py] error postgresql with table new :S

2014-02-05 Thread www.diazluis.com
I thought fast and I resolved .. I have almost no knowledge as to postgresql run a backup "dump" of my local development version (works perfect) between the server and psql: delete the table manually, Run all the instructions that appeared in the backup that made mention to the table "denun

Re: [web2py] error postgresql with table new :S

2014-02-05 Thread Johann Spies
On 5 February 2014 06:35, Luis Díaz wrote: > ProgrammingError: permiso denegado a la relación denuncia > > Error snapshot > > (permiso denegado a la relación > denuncia )-- > > > Who is the owner of the database in Postgresql? And of table 'denuncia'? Does user 'usuario' have rights to that dat

[web2py] error postgresql with table new :S

2014-02-04 Thread Luis Díaz
db = DAL('postgres://usuario:puerto@localhost:5432/welcome', pool_size=1,check_reserved=['all'], fake_migrate_all=True) db.define_table('denuncia', Field('status', 'integer', default=0, writable=False, readable=False), Field('descripcion', 'text'), Fi