diff options
| author | Bruno Cesar Ribas <bcribas@users.noreply.github.com> | 2025-09-22 17:40:27 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-22 17:40:27 +0000 |
| commit | 5d043bdbc2879370254e0ef385fd288a0a6597a3 (patch) | |
| tree | af2a65b88f5f34e53ef9b7aa8f91301fff44edba /src/flog.php | |
| parent | 5892e33610cd23e9a4668d9962b679f7ae678be2 (diff) | |
| parent | 7a487e2d01e5839d128321db77b9c50911da7923 (diff) | |
| download | boca-5d043bdbc2879370254e0ef385fd288a0a6597a3.tar.gz boca-5d043bdbc2879370254e0ef385fd288a0a6597a3.zip | |
Merge pull request #45 from jonessouza/master
Fix "Name mismatch" in webcast.php
Diffstat (limited to 'src/flog.php')
| -rw-r--r-- | src/flog.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flog.php b/src/flog.php index ca168f0..ea6805d 100644 --- a/src/flog.php +++ b/src/flog.php @@ -31,7 +31,7 @@ CREATE TABLE \"logtable\" ( \"contestnumber\" int4 NOT NULL, -- (id do concurso) \"sitenumber\" int4 NOT NULL, -- (id do site local) \"loguser\" int4, -- (usuario envolvido com o log) - \"logip\" varchar(20) NOT NULL, -- (numero do site do usuario envolvido) + \"logip\" varchar(160) NOT NULL, -- (numero do site do usuario envolvido) \"logdate\" int4 NOT NULL, -- (dia/hora da criacao deste registro) \"logtype\" varchar(20) NOT NULL, -- (tipo de registro: error, warn, info, debug) \"logdata\" text NOT NULL, -- (descricao do registro) |