crane*, createdb: add Korean translation (#14138)

This commit is contained in:
HoJeong Im
2024-10-13 00:28:16 +09:00
committed by GitHub
parent 32cae5420e
commit 78a826ff43
25 changed files with 514 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
# createdb
> PostgreSQL 데이터베이스 생성.
> 더 많은 정보: <https://www.postgresql.org/docs/current/app-createdb.html>.
- 현재 사용자가 가지고 있는 데이터베이스를 생성:
`createdb {{데이터베이스_이름}}`
- 설명과 함께 특정 사용자가 소유한 데이터베이스를 생성:
`createdb --owner {{사용자명}} {{데이터베이스_이름}} '{{설명}}'`
- 템플릿에서 데이터베이스를 생성:
`createdb --template {{템플릿_이름}} {{데이터베이스_이름}}`