Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increased character limit of Class in algoliasearch_queue #1396

Merged
merged 2 commits into from
Sep 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions etc/db_schema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<table name="algoliasearch_queue" resource="default" engine="innodb" comment="Algoliasearch Queue Table">
<column xsi:type="int" name="job_id" unsigned="false" nullable="false" identity="true" comment="Job Id"/>
<column xsi:type="int" name="pid" unsigned="true" nullable="true" identity="false" comment="PID"/>
<column xsi:type="varchar" name="class" nullable="false" length="50" comment="class"/>
<column xsi:type="varchar" name="class" nullable="false" length="255" comment="class"/>
<column xsi:type="varchar" name="method" nullable="false" length="255" comment="Method"/>
<column xsi:type="text" name="data" nullable="false" comment="Data"/>
<column xsi:type="int" name="max_retries" unsigned="true" nullable="false" default="3" identity="false" comment="Max Retries"/>
Expand Down Expand Up @@ -37,7 +37,7 @@
<table name="algoliasearch_queue_archive" resource="default" engine="innodb" comment="Algoliasearch Queue Archive Table">
<column xsi:type="int" name="archive_id" unsigned="false" nullable="false" identity="true" comment="Archive Id"/>
<column xsi:type="int" name="pid" unsigned="true" nullable="true" identity="false" comment="PID"/>
<column xsi:type="varchar" name="class" nullable="false" length="50" comment="class"/>
<column xsi:type="varchar" name="class" nullable="false" length="255" comment="class"/>
<column xsi:type="varchar" name="method" nullable="false" length="255" comment="Method"/>
<column xsi:type="text" name="data" nullable="false" comment="Data"/>
<column xsi:type="int" name="retries" unsigned="true" nullable="false" default="0" identity="false" comment="Retries"/>
Expand Down