mirror of
https://github.com/lingble/twenty.git
synced 2025-11-04 14:47:59 +00:00
* Add WSL instruction and IDE setup instruction * Fix setup * Fix setup * Fix * Update docs/docs/developer/additional/ide-setup.mdx Co-authored-by: Weiko <corentin@twenty.com> --------- Co-authored-by: Weiko <corentin@twenty.com>
9 lines
207 B
SQL
9 lines
207 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';
|