Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 531b9c2161f316973764fd8e22f97ae1b5c31913 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
SYSTEM_DATA
===========
  id                     bigint
  version                varchar(20)
  creationdate           date



SEEDS
=====
  name                   varchar(20)
  seed                   bigint



DESTINATIONS
============
  name                   varchar(255)
  isqueue                int
  destination_id         bigint



MESSAGES
========
  message_id            varchar(64)
  destination_id        bigint
  priority              int
  createtime            bigint
  expirytime            bigint
  processed             int
  messageblob           longblob



MESSAGE_HANDLES
===============
   message_id           varchar(64)
   destination_id       bigint
   consumer_id          bigint
   priority             int
   acceptedtime         bigint
   sequencenumber       bigint
   expirytime           bigint
   delivered            int



CONSUMERS
=========
  name                 varchar(255)
  destination_id       bigint
  consumer_id          bigint
  created              bigint



USERS
=====
  username             varchar(50)
  password             varchar(50)

Back to the top