Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
swh-core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Antoine Lambert
swh-core
Commits
932eed48
Commit
932eed48
authored
3 years ago
by
David Douard
Browse files
Options
Downloads
Patches
Plain Diff
Remove the old and unused log-schema.sql file
parent
5046a95f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
MANIFEST.in
+0
-1
0 additions, 1 deletion
MANIFEST.in
swh/core/sql/log-schema.sql
+0
-33
0 additions, 33 deletions
swh/core/sql/log-schema.sql
with
0 additions
and
34 deletions
MANIFEST.in
+
0
−
1
View file @
932eed48
...
...
@@ -2,7 +2,6 @@ include Makefile
include conftest.py
include requirements*.txt
include version.txt
recursive-include swh/core/sql *.sql
recursive-include swh py.typed
recursive-include swh/core/tests/data/ *
recursive-include swh/core/tests/fixture/data/ *
This diff is collapsed.
Click to expand it.
swh/core/sql/log-schema.sql
deleted
100644 → 0
+
0
−
33
View file @
5046a95f
---
--- logging data model
---
create
table
dbversion
(
version
int
primary
key
,
release
timestamptz
,
description
text
);
insert
into
dbversion
(
version
,
release
,
description
)
values
(
1
,
now
(),
'Work In Progress'
);
create
type
log_level
as
enum
(
'debug'
,
'info'
,
'warning'
,
'error'
,
'critical'
);
create
table
log
(
id
bigserial
primary
key
,
ts
timestamptz
not
null
default
now
(),
level
log_level
not
null
default
'info'
,
-- importance
message
text
not
null
,
-- human readable message
data
jsonb
,
-- extra data; when NOT NULL, must contain a key "type"
-- denoting the kind of message within src_module
src_module
text
,
-- fully-qualified source module, e.g., "swh.loader.git"
src_host
text
,
-- FQDN source hostname, e.g., "worker03.softwareheritage.org"
src_pid
int
-- originating PID, relative to src_host
);
create
index
on
log
(
ts
);
create
index
on
log
(
src_module
);
create
index
on
log
(
src_host
);
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment