Skip to content

Commit

Permalink
Fixes unity tests
Browse files Browse the repository at this point in the history
  • Loading branch information
papac committed Sep 22, 2023
1 parent b06c964 commit 0c97b6e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/Queue/QueueTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,12 @@ public static function setUpBeforeClass(): void
Database::statement('drop table if exists pets');
Database::statement('create table pets (id int primary key auto_increment, name varchar(255))');
Database::statement('create table if not exists queues (
id int primary key auto_increment,
id varchar(255) primary key,
queue varchar(255),
payload text,
status varchar(100),
attempts int,
avalaibled_at datetime null default null,
reserved_at datetime null default null,
created_at datetime
)');
Expand Down

0 comments on commit 0c97b6e

Please sign in to comment.