Skip to content

Commit b57e91b

Browse files
committed
update table schema
1 parent 2b88a44 commit b57e91b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Table/Generated/AgentRow.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ public function getCategoryId(): int
3333
{
3434
return $this->categoryId ?? throw new \PSX\Sql\Exception\NoValueAvailable('No value for required column "category_id" was provided');
3535
}
36-
public function setConnectionId(int $connectionId): void
36+
public function setConnectionId(?int $connectionId): void
3737
{
3838
$this->connectionId = $connectionId;
3939
}
40-
public function getConnectionId(): int
40+
public function getConnectionId(): ?int
4141
{
42-
return $this->connectionId ?? throw new \PSX\Sql\Exception\NoValueAvailable('No value for required column "connection_id" was provided');
42+
return $this->connectionId;
4343
}
4444
public function setTenantId(?string $tenantId): void
4545
{

src/Table/Generated/AgentTable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function getName(): string
2727
}
2828
public function getColumns(): array
2929
{
30-
return [self::COLUMN_ID => 0x3020000a, self::COLUMN_CATEGORY_ID => 0x20000a, self::COLUMN_CONNECTION_ID => 0x20000a, self::COLUMN_TENANT_ID => 0x40a00040, self::COLUMN_STATUS => 0x20000a, self::COLUMN_TYPE => 0x20000a, self::COLUMN_NAME => 0xa000ff, self::COLUMN_DESCRIPTION => 0xa000ff, self::COLUMN_INTRODUCTION => 0xb00000, self::COLUMN_TOOLS => 0x40b00000, self::COLUMN_OUTGOING => 0x40a000ff, self::COLUMN_METADATA => 0x40b00000, self::COLUMN_INSERT_DATE => 0x800000];
30+
return [self::COLUMN_ID => 0x3020000a, self::COLUMN_CATEGORY_ID => 0x20000a, self::COLUMN_CONNECTION_ID => 0x4020000a, self::COLUMN_TENANT_ID => 0x40a00040, self::COLUMN_STATUS => 0x20000a, self::COLUMN_TYPE => 0x20000a, self::COLUMN_NAME => 0xa000ff, self::COLUMN_DESCRIPTION => 0xa000ff, self::COLUMN_INTRODUCTION => 0xb00000, self::COLUMN_TOOLS => 0x40b00000, self::COLUMN_OUTGOING => 0x40a000ff, self::COLUMN_METADATA => 0x40b00000, self::COLUMN_INSERT_DATE => 0x800000];
3131
}
3232
/**
3333
* @return array<\Fusio\Impl\Table\Generated\AgentRow>

0 commit comments

Comments
 (0)