Skip to content
Snippets Groups Projects
Commit 6adbad2a authored by Radiyya Dwisaputra's avatar Radiyya Dwisaputra
Browse files

change sidang tesis table

parent e883a3e0
Branches dosen
No related merge requests found
...@@ -13,13 +13,13 @@ class ChangeSidangTesis extends Migration ...@@ -13,13 +13,13 @@ class ChangeSidangTesis extends Migration
*/ */
public function up() public function up()
{ {
Schema::table('sidang_teses', function (Blueprint $table) { Schema::table('sidang_tesis', function (Blueprint $table) {
$table->unsignedinteger('thesis_id'); $table->unsignedinteger('thesis_id');
$table->dropColumn('mahasiswa_id'); $table->dropColumn('mahasiswa_id');
$table->dropColumn('dosen_pembimbing1'); $table->dropColumn('dosen_pembimbing1');
$table->dropColumn('dosen_pembimbing2'); $table->dropColumn('dosen_pembimbing2');
$table->timestamp(); $table->timestamps();
} });
} }
/** /**
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment