Remove unnecessary "lock" column from task_queue table

This commit is contained in:
Kijin Sung 2024-10-12 01:21:43 +09:00
parent 29837bdf4c
commit f1eee10791

View file

@ -3,6 +3,5 @@
<column name="handler" type="varchar" size="191" notnull="notnull" />
<column name="args" type="longtext" notnull="notnull" />
<column name="options" type="longtext" notnull="notnull" />
<column name="lock" type="int" notnull="notnull" default="0" index="idx_lock" />
<column name="regdate" type="datetime" notnull="notnull" default="current_timestamp()" index="idx_regdate" />
</table>