Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix a harmless but redundant space in the admin_log schema definition. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
18524551580288e07c278b6a1389f410 |
| User & Date: | drh 2016-08-23 10:13:32.409 |
Context
|
2016-08-23
| ||
| 11:58 | Add a link to the /uvlist screen from the /setup menu. Add the byage=1 query parameter to /uvlist. check-in: ab4c1e2961 user: drh tags: trunk | |
| 10:13 | Fix a harmless but redundant space in the admin_log schema definition. check-in: 1852455158 user: drh tags: trunk | |
| 01:41 | Better default sort orders for columns on the /uvlist check-in: 401d9b2937 user: drh tags: trunk | |
Changes
Changes to src/db.c.
| ︙ | ︙ | |||
3081 3082 3083 3084 3085 3086 3087 |
if( once ) return;
once = 1;
db_multi_exec(
"CREATE TABLE IF NOT EXISTS repository.admin_log(\n"
" id INTEGER PRIMARY KEY,\n"
" time INTEGER, -- Seconds since 1970\n"
" page TEXT, -- path of page\n"
| | | 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 |
if( once ) return;
once = 1;
db_multi_exec(
"CREATE TABLE IF NOT EXISTS repository.admin_log(\n"
" id INTEGER PRIMARY KEY,\n"
" time INTEGER, -- Seconds since 1970\n"
" page TEXT, -- path of page\n"
" who TEXT, -- User who made the change\n"
" what TEXT -- What changed\n"
")"
);
}
/*
** Write a message into the admin_event table, if admin logging is
|
| ︙ | ︙ |