Skip to content

Commit

Permalink
add fields texte_de_base and active in conteneurs - fixes Legilibre#34
Browse files Browse the repository at this point in the history
  • Loading branch information
adipasquale committed Jun 17, 2019
1 parent 28f5f62 commit 4dac38b
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions packages/dila2sql/dila2sql/sql/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -156,13 +156,15 @@ CREATE VIEW textes_versions_brutes_view AS
ON b.id = a.id AND b.cid = a.cid AND b.dossier = a.dossier AND b.mtime = a.mtime;

CREATE TABLE conteneurs
( id text unique not null
, titre text
, etat text
, nature text
, num text
, date_publi date
, mtime int not null
( id text unique not null
, titre text
, etat text
, nature text
, num text
, date_publi date
, texte_de_base text
, active boolean
, mtime int not null
);

CREATE INDEX conteneurs_id_idx ON conteneurs (id);
Expand Down

0 comments on commit 4dac38b

Please sign in to comment.