mirror of
https://github.com/twentyhq/twenty
synced 2026-05-02 19:07:20 +00:00
9 lines
235 B
SQL
9 lines
235 B
SQL
-- Create the default database for development
|
|
CREATE DATABASE "default";
|
|
|
|
-- Create the tests database for e2e testing
|
|
CREATE DATABASE "test";
|
|
|
|
-- Create a twenty user
|
|
CREATE USER twenty PASSWORD 'twenty';
|
|
ALTER USER twenty CREATEDB;
|