Implement files changelog

This commit is contained in:
Kijin Sung 2019-09-14 00:22:24 +09:00
parent 2cd2d0528b
commit 941542b991
6 changed files with 107 additions and 17 deletions

View 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>