SQL
CREATE TABLE pipe_scheduler_state (
pipe_name TEXT PRIMARY KEY,
last_run_at TEXT,
last_success_at TEXT,
consecutive_failures INTEGER DEFAULT 0
)
Columns
| Column | Data type | Allow null | Primary key | Actions |
|---|---|---|---|---|
pipe_name |
TEXT |
✓ | ✓ | read-only |
last_run_at |
TEXT |
✓ | read-only | |
last_success_at |
TEXT |
✓ | read-only | |
consecutive_failures |
INTEGER |
✓ | read-only |
Indexes
| Name | Columns | Unique | SQL | Drop? |
|---|---|---|---|---|
| sqlite_autoindex_pipe_scheduler_state_1 |
pipe_name
|
✓ | SQL | read-only |