mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 18:21:39 +09:00
Add DB queue driver
This commit is contained in:
parent
78bbc2ffa5
commit
09fa4778c0
3 changed files with 131 additions and 0 deletions
8
modules/module/schemas/task_queue.xml
Normal file
8
modules/module/schemas/task_queue.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<table name="task_queue">
|
||||
<column name="id" type="bigint" notnull="notnull" primary_key="primary_key" auto_increment="auto_increment" />
|
||||
<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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue