Baoshan
03/26/2022, 2:26 PMpostgres
)? The CREATE DATABASE
command works. But the Table editor seems hard-coded to the default postgres
database. Extensions can not be enabled on the created database. Did I miss something?Needle
03/26/2022, 2:26 PM/title
command!
We have solved your problem?
Click the button below to archive it.silentworks
03/26/2022, 3:06 PMNeedle
03/26/2022, 3:06 PMBaoshan
03/26/2022, 3:16 PMpostgres
database.Needle
03/26/2022, 3:17 PMlawrencecchen
03/26/2022, 8:40 PMsql
CREATE DATABASE hello;
create extension postgis; -- on the new database
and it works as expected. although yeah, supabase's dashboard doesn't support this, but if you use a sql client like postico or just psql, everything should work as expected (other than postgrest, auth, and basically everything else that supabase adds...) you can change databases in psql using \c DBNAME
(https://stackoverflow.com/questions/3949876/how-to-switch-databases-in-psql)Baoshan
03/30/2022, 1:42 PMunaccent
extension.Baoshan
03/30/2022, 1:42 PM