Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Poduptime
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
diasporg
Poduptime
Commits
60082df5
Commit
60082df5
authored
Feb 18, 2019
by
dmorley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
missing table
parent
aae81b97
Pipeline
#1214
passed with stage
in 2 minutes and 19 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
CHANGELOG.md
CHANGELOG.md
+2
-1
db/tables.sql
db/tables.sql
+10
-0
No files found.
CHANGELOG.md
View file @
60082df5
...
...
@@ -9,7 +9,8 @@ The format is based on [Keep a Changelog] and this project adheres to [Semantic
### Removed
### Fixed
-
init call on new setup sets up the needed items
-
missing table.sql item from version 2.5.2
-
missing tables.sql item from version 2.5.2
-
missing table on tables.sql
-
link to osada repo updated
### Security
...
...
db/tables.sql
View file @
60082df5
...
...
@@ -96,6 +96,16 @@ CREATE TABLE masterversions (
date_checked
timestamp
DEFAULT
current_timestamp
);
CREATE
TABLE
monthlystats
(
id
serial8
UNIQUE
PRIMARY
KEY
,
total_users
int
,
total_posts
int
,
total_comments
int
,
total_pods
int
,
total_uptime
int
,
date_checked
timestamp
DEFAULT
current_timestamp
);
CREATE
TABLE
meta
(
id
serial8
UNIQUE
PRIMARY
KEY
,
name
text
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment