Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions database/design.dbm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
CAUTION: Do not modify this file unless you know what you are doing.
Unexpected results may occur if the code is changed deliberately.
-->
<dbmodel pgmodeler-ver="1.0.4" use-changelog="false" last-position="450,695" last-zoom="1" max-obj-count="31"
<dbmodel pgmodeler-ver="1.0.4" use-changelog="false" last-position="803,636" last-zoom="1" max-obj-count="31"
default-owner="postgres"
layers="Default layer"
active-layers="0"
Expand Down Expand Up @@ -271,10 +271,10 @@ CAUTION: Do not modify this file unless you know what you are doing.
<type name="integer" length="0"/>
</column>
<column name="time_start" not-null="true">
<type name="integer" length="0"/>
<type name="bigint" length="0"/>
</column>
<column name="time_end" not-null="true">
<type name="integer" length="0"/>
<type name="bigint" length="0"/>
</column>
<column name="comment">
<type name="text" length="0"/>
Expand Down Expand Up @@ -491,15 +491,15 @@ CAUTION: Do not modify this file unless you know what you are doing.
<schema name="public"/>
<role name="postgres"/>
<tag name="primary_data_layer"/>
<position x="1300" y="1420"/>
<position x="1360" y="1480"/>
<column name="id" not-null="true">
<type name="serial" length="0"/>
</column>
<column name="qcf_id" not-null="true">
<type name="integer" length="0"/>
</column>
<column name="verification_time" not-null="true">
<type name="bigint" length="0"/>
<type name="timestamp with time zone" length="0" with-timezone="true"/>
</column>
<column name="verified_by" not-null="true">
<type name="varchar" length="0"/>
Expand Down
6 changes: 3 additions & 3 deletions database/exported/create-tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ CREATE TABLE public.quality_control_flags (
run_number integer NOT NULL,
detector_id integer NOT NULL,
flag_type_id integer NOT NULL,
time_start integer NOT NULL,
time_end integer NOT NULL,
time_start bigint NOT NULL,
time_end bigint NOT NULL,
comment text,
added_by varchar NOT NULL,
addition_time timestamp with time zone NOT NULL,
Expand Down Expand Up @@ -407,7 +407,7 @@ ALTER TABLE public.anchored_periods OWNER TO postgres;
CREATE TABLE public.verifications (
id serial NOT NULL,
qcf_id integer NOT NULL,
verification_time bigint NOT NULL,
verification_time timestamp with time zone NOT NULL,
verified_by varchar NOT NULL,
CONSTRAINT verifications_pk PRIMARY KEY (id)
);
Expand Down
Binary file modified database/exported/design.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.