mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-22 05:15:29 +09:00
Implement files changelog
This commit is contained in:
parent
2cd2d0528b
commit
941542b991
6 changed files with 107 additions and 17 deletions
9
modules/file/schemas/files_changelog.xml
Normal file
9
modules/file/schemas/files_changelog.xml
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<table name="files_changelog">
|
||||
<column name="id" type="number" primary_key="primary_key" auto_increment="auto_increment" />
|
||||
<column name="change_type" type="char" size="1" notnull="notnull" index="idx_change_type" />
|
||||
<column name="file_srl" type="number" notnull="notnull" index="idx_file_srl" />
|
||||
<column name="file_size" type="number" notnull="notnull" />
|
||||
<column name="uploaded_filename" type="varchar" size="250" notnull="notnull" />
|
||||
<column name="previous_filename" type="varchar" size="250" />
|
||||
<column name="regdate" type="date" notnull="notnull" index="idx_regdate" />
|
||||
</table>
|
||||
Loading…
Add table
Add a link
Reference in a new issue