mirror of
https://gitee.com/jmix/cuba.git
synced 2024-12-05 04:38:10 +08:00
PostgreSQL database creation does not work on Amazon RDS. #PL-5702
This commit is contained in:
parent
ac507febc5
commit
0913fdf1a8
@ -803,10 +803,11 @@ create index IDX_SEC_REMEMBER_ME_TOKEN on SEC_REMEMBER_ME(TOKEN)^
|
||||
|
||||
--------------------------------------------------------------------------------------------------------------
|
||||
|
||||
create or replace function newid()
|
||||
returns uuid
|
||||
as '$libdir/uuid-ossp', 'uuid_generate_v1'
|
||||
volatile strict language c^
|
||||
create extension "uuid-ossp"^
|
||||
|
||||
create or replace function newid() returns uuid
|
||||
as 'select uuid_generate_v1();'
|
||||
language sql^
|
||||
|
||||
--------------------------------------------------------------------------------------------------------------
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user