mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 13:02:08 +02:00

* pages/*, style-guide: update pages, fix Markdown (commit 1) * Update pages * style-guide.de: update page * Apply suggestions from code review Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * pip3: remove search command * rpm: update path placeholder Co-authored-by: pixel <pixel+github@chrissx.de> * Update pages/linux/pkgfile.md Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --------- Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> Co-authored-by: pixel <pixel+github@chrissx.de>
28 lines
564 B
Markdown
28 lines
564 B
Markdown
# cradle sql
|
|
|
|
> Manage Cradle SQL databases.
|
|
> More information: <https://cradlephp.github.io/docs/3.B.-Reference-Command-Line-Tools.html#sql>.
|
|
|
|
- Rebuild the database schema:
|
|
|
|
`cradle sql build`
|
|
|
|
- Rebuild the database schema for a specific package:
|
|
|
|
`cradle sql build {{package}}`
|
|
|
|
- Empty the entire database:
|
|
|
|
`cradle sql flush`
|
|
|
|
- Empty the database tables for a specific package:
|
|
|
|
`cradle sql flush {{package}}`
|
|
|
|
- Populate the tables for all packages:
|
|
|
|
`cradle sql populate`
|
|
|
|
- Populate the tables for a specific package:
|
|
|
|
`cradle sql populate {{package}}`
|