import to minio works

This commit is contained in:
2025-12-19 13:06:11 -05:00
parent e15486b2cc
commit d40a6a1d46
9 changed files with 46 additions and 78 deletions

5
sql/update.sql Normal file
View File

@@ -0,0 +1,5 @@
ALTER TABLE accounts
ADD COLUMN IF NOT EXISTS created_at TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP,
ADD COLUMN IF NOT EXISTS updated_at TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP,
ADD COLUMN IF NOT EXISTS deleted_at TIMESTAMP WITH TIME ZONE;