File: prefixes.sql

package info (click to toggle)
prefix 1.2.8-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 688 kB
  • sloc: ansic: 1,297; sql: 755; makefile: 31; sh: 2
file content (10 lines) | stat: -rw-r--r-- 256 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
create table prefixes (
       prefix    text primary key,
       name      text not null,
       shortname text,
       state     char default 'S',

       check( state in ('S', 'R') )
);

comment on column prefixes.state is 'S: attribué - R: réservé';