Sha256: 290b62de9b6bf2625c03c73c6247ae10d97e355329d781d4c27ef2ad82d90396

Contents?: true

Size: 580 Bytes

Versions: 2

Compression:

Stored size: 580 Bytes

Contents

          PRAGMA default_synchronous = FULL;
          create table jobs
          (
            jid integer primary key,
            priority,
          state,
          submitted,
          started,
          finished,
          elapsed,
          submitter,
          runner,
          stdin,
          stdout,
          stderr,
          data,
          pid,
          exit_status,
          tag,
          restartable,
          command
          );
          create table attributes
          (
            key,
            value,
            primary key (key)
          );

Version data entries

2 entries across 1 versions & 1 rubygems

Version Path
rq-3.3.0 q/db.schema
rq-3.3.0 rails/q/db.schema