mirror of
https://github.com/twentyhq/twenty.git
synced 2026-06-14 19:08:04 -04:00
10 lines
235 B
SQL
10 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;
|