CC-4661: Listener Statistics

- db change commit
This commit is contained in:
James 2012-11-02 17:44:06 -04:00
parent 3af3cd5870
commit 8b70136dd6
6 changed files with 96 additions and 14 deletions

View file

@ -445,6 +445,7 @@
<column name="id" phpName="DbId" primaryKey="true" type="INTEGER" autoIncrement="true" required="true" />
<column name="timestamp_id" phpName="DbTimestampId" type="INTEGER" required="true"/>
<column name="listener_count" phpName="DbListenerCount" type="INTEGER" required="true" />
<column name="mount_name" phpName="DbMountName" type="VARCHAR" required="true" />
<foreign-key foreignTable="cc_timestamp" name="cc_timestamp_inst_fkey" onDelete="CASCADE">
<reference local="timestamp_id" foreign="id"/>
</foreign-key>

View file

@ -697,6 +697,7 @@ CREATE TABLE "cc_listener_count"
"id" serial NOT NULL,
"timestamp_id" INTEGER NOT NULL,
"listener_count" INTEGER NOT NULL,
"mount_name" VARCHAR(255) NOT NULL,
PRIMARY KEY ("id")
);