Skip to content

Commit

Permalink
perbaikan migrasi navigasi (#1023)
Browse files Browse the repository at this point in the history
Co-authored-by: Abah Roland <[email protected]>
  • Loading branch information
pandigresik and vickyrolanda authored Sep 9, 2024
1 parent d012524 commit 7177234
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 20 deletions.
18 changes: 1 addition & 17 deletions catatan_rilis.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,9 @@ Terima kasih pada @uddinmtm telah ikut berkontribusi.

#### FITUR

1. [#998](https://github.com/OpenSID/OpenDK/issues/998) Penambahan sambutan pada daftar menu navigasi.
2. [#669](https://github.com/OpenSID/OpenDK/issues/669) Penambahan identitas pelapor.


#### BUG

1. [#980](https://github.com/OpenSID/OpenDK/issues/980) Hapus media sosial pada profile
2. [#1002](https://github.com/OpenSID/OpenDK/issues/1002) Fix Error Statistik Pendidikan
3. [#1008](https://github.com/OpenSID/OpenDK/issues/1008) Perbaikan error tidak bisa mengirim keluhan di sikema.
4. [#985](https://github.com/OpenSID/OpenDK/issues/985) Perbaikan navigasi default
5. [#990](https://github.com/OpenSID/OpenDK/issues/990) Perbaikan error ketika hapus slide tanpa gambar
6. [#994](https://github.com/OpenSID/OpenDK/issues/994) Perbaikan error migrasi tema.
7. [#992](https://github.com/OpenSID/OpenDK/issues/992) Perbaikan error setelah update terbaru.
8. [#993](https://github.com/OpenSID/OpenDK/issues/993) Perbaikan penduduk nik ganda.
1. [#1028]https://github.com/OpenSID/OpenDK/issues/1028) Perbaikan migrasi navigasi.

#### TEKNIS

1. [#982](https://github.com/OpenSID/OpenDK/issues/982) Perbaikan celah di API list penduduk dan kk.
2. [#1006](https://github.com/OpenSID/OpenDK/issues/1006) Template Issue Label Fitur
3. [#988](https://github.com/OpenSID/OpenDK/pull/988) Hapus pengecekan settings kosong
4. [#1004](https://github.com/OpenSID/OpenDK/issues/1004) Gunakan cache untuk mempercepat pengambilan data feeds berita desa
5. [#1000](https://github.com/OpenSID/OpenDK/issues/1000) Pindahkan halaman frontend ke folder themes
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@
*/
public function up()
{
Schema::table('das_navigation', function (Blueprint $table) {
$table->tinyInteger('type')->default(0)->after('slug');
});
if (!Schema::hasColumn('das_navigation', 'type')) {
Schema::table('das_navigation', function (Blueprint $table) {
$table->tinyInteger('type')->default(0)->after('slug');
});
}

Navigation::where('url', 'like', '%profil/%')->update(['type' => MenuTipe::PROFIL]);
Navigation::where('url', 'like', '%desa/%')->update(['type' => MenuTipe::DESA]);
Expand Down

0 comments on commit 7177234

Please sign in to comment.