main
Last change
on this file was
42bd667,
checked in by David Fuertes <dfuertes@…>, 4 years ago
|
Historial Limpio
|
-
Property mode set to
100644
|
File size:
366 bytes
|
Line | |
---|
1 | # -*- coding: utf-8 -*- |
---|
2 | |
---|
3 | db.define_table('ous_setup', |
---|
4 | Field('ou_id', required=True, unique=True, writable=False), |
---|
5 | Field('ou_name', required=True, unique=True, writable=False), |
---|
6 | Field('ou_user'), |
---|
7 | Field('ou_password', type='password'), |
---|
8 | ) |
---|
9 | |
---|
10 | db.ous_setup.id.readable = False |
---|
11 | |
---|
Note: See
TracBrowser
for help on using the repository browser.