mirror of
https://gitee.com/devlive-community/datacap.git
synced 2024-12-05 05:27:52 +08:00
[Core] Fixed function time field (#258)
This commit is contained in:
commit
a48a591754
@ -18,6 +18,8 @@
|
||||
![GitHub contributors](https://img.shields.io/github/contributors-anon/EdurtIO/datacap?style=flat-square)
|
||||
![GitHub last commit](https://img.shields.io/github/last-commit/EdurtIO/datacap?style=flat-square)
|
||||
|
||||
[![Security Status](https://www.murphysec.com/platform3/v3/badge/1629055559743877120.svg)](https://www.murphysec.com/accept?code=d1f9c5849bfdc699127f6141c8e0978c&type=1&from=2)
|
||||
|
||||
</div>
|
||||
|
||||
### What is datacap?
|
||||
@ -138,6 +140,9 @@ Here are some of the major database solutions that are supported:
|
||||
</a>
|
||||
<a href="https://duckdb.org/" target="_blank">
|
||||
<img src="assets/plugin/duckdb.png" alt="DuckDB" height="50" />
|
||||
</a>
|
||||
<a href="https://www.alibabacloud.com/zh/product/object-storage-service" target="_blank">
|
||||
<img src="assets/plugin/alioss.png" alt="Aliyun OSS" height="50" />
|
||||
</a>
|
||||
</p>
|
||||
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 2.9 KiB |
5
core/server/src/main/schema/1.6.0/schema/functions.sql
Normal file
5
core/server/src/main/schema/1.6.0/schema/functions.sql
Normal file
@ -0,0 +1,5 @@
|
||||
ALTER TABLE `functions`
|
||||
MODIFY COLUMN `create_time` DATETIME NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP;
|
||||
|
||||
ALTER TABLE `functions`
|
||||
MODIFY COLUMN `update_time` DATETIME NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP;
|
1
core/server/src/main/schema/1.6.0/update.sql
Normal file
1
core/server/src/main/schema/1.6.0/update.sql
Normal file
@ -0,0 +1 @@
|
||||
source schema/functions.sql;
|
Binary file not shown.
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 2.9 KiB |
Loading…
Reference in New Issue
Block a user