Ignore:
Timestamp:
2005-01-12T11:39:22+13:00 (19 years ago)
Author:
schweer
Message:

notifications

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/extensions/gsdl-as/create-tables.sql

    r8875 r8888  
    3030    unique (subscription,predicate)
    3131);
     32
     33create table events (
     34    id int primary key auto_increment,
     35    timestamp datetime not null,
     36    content text not null
     37);
     38
     39create table events_to_subs (
     40    event int not null references events.id,
     41    subscription int not null references subscriptions.id,
     42
     43    unique (event,subscription)
     44);
Note: See TracChangeset for help on using the changeset viewer.