OSDN Git Service

46b446b1be7180c546f4fa248dea528e1609c538
[zither/ds-zither.git] / database / postgres / monitoring_table.sql
1
2
3 CREATE TABLE monitoring_table (
4         uukey_in       int not null,
5         msnumber_in    int not null,
6         moproto_in     int not null,
7         serverkey_in   int not null,
8         modport_in     int not null,
9         mailprno_in    int not null,
10         mailreno_in    int not null,
11         mostat_in      int not null,
12         msps_in        int,
13         premsps_in     int,
14         moextime_lin   bigint,
15         expitime_lin   bigint,
16         modhost_ch1024 char[1024],
17         moptions_ch256 char[256],
18         moinfo_ch1024  char[1024],
19         mukey_in       serial
20 );
21
22