comparison OrthancServer/Sources/Database/InstallLabelsTable.sql @ 5221:d0f7c742d397 db-protobuf

started implementation of labels
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 03 Apr 2023 20:53:14 +0200
parents
children 988dab8deb1c
comparison
equal deleted inserted replaced
5220:df39c7583a49 5221:d0f7c742d397
1 -- Orthanc - A Lightweight, RESTful DICOM Store
2 -- Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
3 -- Department, University Hospital of Liege, Belgium
4 -- Copyright (C) 2017-2023 Osimis S.A., Belgium
5 -- Copyright (C) 2021-2023 Sebastien Jodogne, ICTEAM UCLouvain, Belgium
6 --
7 -- This program is free software: you can redistribute it and/or
8 -- modify it under the terms of the GNU General Public License as
9 -- published by the Free Software Foundation, either version 3 of the
10 -- License, or (at your option) any later version.
11 --
12 -- This program is distributed in the hope that it will be useful, but
13 -- WITHOUT ANY WARRANTY; without even the implied warranty of
14 -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 -- General Public License for more details.
16 --
17 -- You should have received a copy of the GNU General Public License
18 -- along with this program. If not, see <http://www.gnu.org/licenses/>.
19
20
21 CREATE TABLE Labels(
22 internalId INTEGER REFERENCES Resources(internalId) ON DELETE CASCADE,
23 label TEXT
24 );