Skip to content

Commit

Permalink
Update 2022_04_20_115358_alter_programbantuan.php
Browse files Browse the repository at this point in the history
  • Loading branch information
andifahruddinakas committed May 30, 2022
1 parent b6a90c5 commit d84c3ee
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ class AlterProgrambantuan extends Migration
public function up()
{
Schema::table('das_program', function (Blueprint $table) {
$table->bigInteger('id_program_desa')->after('id');
$table->text('description')->nullable()->change();
});
}
Expand All @@ -55,6 +56,7 @@ public function up()
public function down()
{
Schema::table('das_program', function (Blueprint $table) {
$table->dropColumn('id_program_desa');
$table->string('description', 200)->nullable()->change();
});
}
Expand Down

0 comments on commit d84c3ee

Please sign in to comment.