Skip to content
Snippets Groups Projects
Select Git revision
  • 3e1a1f8abf4bb7a0f6860e9fda89a7bc7b27f287
  • master default protected
  • release/8.0-perimetres
  • php84
  • detached3
  • 6.x
  • 7.x
  • detached2
  • detached
  • php82
  • 5.x
  • cherry-pick-bf3b5271
  • v5.x-test
  • laminas_migration
  • 7.2.13
  • 7.2.12
  • 7.2.11
  • 7.2.10
  • 7.2.9
  • 7.2.8
  • 7.2.7
  • 7.2.6
  • 7.2.5
  • 7.2.4
  • 7.2.3
  • 7.2.2
  • 7.2.1
  • 7.2.0
  • 7.1.3
  • 7.1.2
  • 7.1.1
  • 7.1.0
  • 7.0.1
  • 7.0.0
34 results

001_tables.sql

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    001_tables.sql 369 B
    create table unicaen_mail_mail
    (
        id serial not null constraint umail_pkey primary key,
        date_envoi timestamp not null,
        status_envoi varchar(256) not null,
        destinataires text not null,
        destinataires_initials text,
        sujet text,
        corps text,
        mots_clefs text,
        log text
    );
    
    create unique index ummail_id_uindex on unicaen_mail_mail (id);