Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
uniset2
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
UniSet project repositories
uniset2
Commits
f40c4b0c
Commit
f40c4b0c
authored
Apr 08, 2020
by
Pavel Vainerman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added 'table example' for DBServer_PGSQL
parent
0ae26377
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
db_create_example.sql
extensions/DBServer-PostgreSQL/db_create_example.sql
+11
-0
No files found.
extensions/DBServer-PostgreSQL/db_create_example.sql
0 → 100644
View file @
f40c4b0c
CREATE
TABLE
main_history
(
id
PRIMARY
KEY
NOT
NULL
,
date
date
NOT
NULL
,
time
time
NOT
NULL
,
time_usec
int
NOT
NULL
CHECK
(
time_usec
>=
0
),
sensor_id
int
NOT
NULL
,
value
double
precision
NOT
NULL
,
node
int
NOT
NULL
,
confirm
int
DEFAULT
NULL
,
PRIMARY
KEY
(
id
)
);
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