mirror of
https://github.com/dreamstarsky/runbin.git
synced 2026-05-15 14:23:07 +00:00
12 lines
228 B
SQL
12 lines
228 B
SQL
-- +goose Up
|
|
CREATE TABLE IF NOT EXISTS queue (
|
|
id VARCHAR(36) PRIMARY KEY,
|
|
created_at TIMESTAMP NOT NULL DEFAULT NOW(),
|
|
locked_at TIMESTAMP,
|
|
attempts INT NOT NULL DEFAULT 0
|
|
);
|
|
|
|
-- +goose Down
|
|
DROP TABLE queue;
|
|
|