Changeset 839 for branches/prototype-v0/zoo-project/zoo-kernel/sql
- Timestamp:
- Aug 7, 2017, 2:56:24 PM (8 years ago)
- Location:
- branches/prototype-v0/zoo-project/zoo-kernel/sql
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/prototype-v0/zoo-project/zoo-kernel/sql/schema.sql
r781 r839 45 45 creation_time timestamp with time zone default now(), 46 46 end_time timestamp with time zone default NULL, 47 -- queue_duration , 48 -- run_duration , 47 49 progress int, 48 message TEXT 50 message TEXT, 51 -- data_lifetime timestamp with time zone default now() + interval '48 hours', 52 rps_step int4 default 0 49 53 ); 50 54 -------------------------------------------------------------------------------- … … 52 56 -- Used to store the response provided by a services running asynchronously 53 57 create table responses ( 54 uuid text references services(uuid) ON DELETE CASCADE,58 uuid text references process(uuid) ON DELETE CASCADE, 55 59 content text, 56 60 creation_time timestamp with time zone default now()
Note: See TracChangeset
for help on using the changeset viewer.