mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-18 17:12:53 +03: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;
|