[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/resources/sql/patches/ -> 005.workers.sql (source)

   1  create table {$NAMESPACE}_worker.worker_task (
   2    id int unsigned not null auto_increment primary key,
   3    taskClass varchar(255) not null,
   4    leaseOwner varchar(255),
   5    leaseExpires int unsigned,
   6    priority bigint unsigned not null,
   7    failureCount int unsigned not null,
   8    key(taskClass),
   9    key(leaseOwner),
  10    key(leaseExpires)
  11  );
  12  
  13  create table {$NAMESPACE}_worker.worker_taskdata (
  14    id int unsigned not null auto_increment primary key,
  15    taskID int unsigned not null,
  16    data longblob not null,
  17    unique key (taskID)
  18  );


Generated: Sun Nov 30 09:20:46 2014 Cross-referenced by PHPXref 0.7.1