Skip to content
Snippets Groups Projects
Commit 7802631e authored by Sabine Schröder's avatar Sabine Schröder
Browse files

#11: CI pipeline failed with Gitlab runner, but is running locally (try to find the error)

parent de13972f
Branches
No related tags found
No related merge requests found
Pipeline #59781 failed
......@@ -39,7 +39,8 @@ OK_enum = (
CONTACTS_ID_SEQ = Sequence('contacts_id_seq') # define sequence explicitly
class Contact(Base):
""" Table "public.contacts"
"""
Table "public.contacts"
+-----------------+---------+-----------+----------+----------------------------------------+
| Column | Type | Collation | Nullable | Default |
......@@ -50,6 +51,7 @@ class Contact(Base):
+-----------------+---------+-----------+----------+----------------------------------------+
| organisation_id | integer | | | |
+-----------------+---------+-----------+----------+----------------------------------------+
Indexes:
"contacts_pkey" PRIMARY KEY, btree (id)
"contacts_person_id_organisation_id" UNIQUE CONSTRAINT, btree (person_id, organisation_id)
......
......@@ -8,7 +8,8 @@ from toardb.base import Base
ORGANISATIONS_ID_SEQ = Sequence('organisations_id_seq') # define sequence explicitly
class Organisation(Base):
""" Table "public.organisations"
"""
Table "public.organisations"
+----------------+------------------------+-----------+----------+-------------------------------------------+
| Column | Type | Collation | Nullable | Default |
......@@ -31,6 +32,7 @@ class Organisation(Base):
+----------------+------------------------+-----------+----------+-------------------------------------------+
| homepage | character varying(200) | | not null | |
+----------------+------------------------+-----------+----------+-------------------------------------------+
Indexes:
"organisations_pkey" PRIMARY KEY, btree (id)
Check constraints:
......
......@@ -8,7 +8,8 @@ from toardb.base import Base
PERSONS_ID_SEQ = Sequence('persons_id_seq') # define sequence explicitly
class Person(Base):
""" Table "public.persons"
"""
Table "public.persons"
+-----------+------------------------+-----------+----------+-------------------------------------+
| Column | Type | Collation | Nullable | Default |
......@@ -23,6 +24,7 @@ class Person(Base):
+-----------+------------------------+-----------+----------+-------------------------------------+
| isprivate | boolean | | not null | true |
+-----------+------------------------+-----------+----------+-------------------------------------+
Indexes:
"persons_pkey" PRIMARY KEY, btree (id)
"persons_name_email" UNIQUE CONSTRAINT, btree (name, email)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment