2021-10-10 21:25:00 +07:00
|
|
|
# rails destroy
|
|
|
|
|
2024-10-03 09:45:19 +07:00
|
|
|
> Menghapus sumber daya (resources) yang dikelola dalam suatu proyek Rails.
|
2021-10-10 21:25:00 +07:00
|
|
|
> Informasi lebih lanjut: <https://guides.rubyonrails.org/command_line.html#bin-rails-destroy>.
|
|
|
|
|
2024-10-03 09:45:19 +07:00
|
|
|
- Tampilkan daftar semua generator yang tersedia untuk membantu proses penghapusan:
|
2021-10-10 21:25:00 +07:00
|
|
|
|
|
|
|
`rails destroy`
|
|
|
|
|
2024-10-03 09:45:19 +07:00
|
|
|
- Hapus suatu model yang bernama Post:
|
2021-10-10 21:25:00 +07:00
|
|
|
|
|
|
|
`rails destroy model {{Post}}`
|
|
|
|
|
2024-10-03 09:45:19 +07:00
|
|
|
- Hapus suatu controller yang bernama Posts:
|
2021-10-10 21:25:00 +07:00
|
|
|
|
|
|
|
`rails destroy controller {{Posts}}`
|
|
|
|
|
2024-10-03 09:45:19 +07:00
|
|
|
- Hapus suatu migrasi yang membuat Posts:
|
2021-10-10 21:25:00 +07:00
|
|
|
|
|
|
|
`rails destroy migration {{CreatePosts}}`
|
|
|
|
|
2024-10-03 09:45:19 +07:00
|
|
|
- Hapus suatu scaffold bagi model Post:
|
2021-10-10 21:25:00 +07:00
|
|
|
|
|
|
|
`rails destroy scaffold {{Post}}`
|