Browse Source

Merge branch 'Merge_gabriel_mayo' of https://git.ccom.uprrp.edu/CDCC/OLAS into Merge_gabriel_mayo

parent
commit
4628965987

+ 36
- 0
app/database/migrations/2022_01_10_163331_add_deleted_at_objectives.php View File

@@ -0,0 +1,36 @@
1
+<?php
2
+
3
+use Illuminate\Database\Schema\Blueprint;
4
+use Illuminate\Database\Migrations\Migration;
5
+
6
+class AddDeletedAtObjectives extends Migration {
7
+
8
+	/**
9
+	 * Run the migrations.
10
+	 *
11
+	 * @return void
12
+	 */
13
+	public function up()
14
+	{
15
+		Schema::table('objectives', function(Blueprint $table)
16
+		{
17
+			$table->date('deleted_at')->nullable();
18
+		//
19
+		});
20
+	}
21
+
22
+	/**
23
+	 * Reverse the migrations.
24
+	 *
25
+	 * @return void
26
+	 */
27
+	public function down()
28
+	{
29
+		Schema::table('objectives', function(Blueprint $table)
30
+		{
31
+			$table->dropColumn('deleted_at');
32
+			//
33
+		});
34
+	}
35
+
36
+}

+ 526
- 0
app/views/layouts/master_sin_semesterbar.blade.php
File diff suppressed because it is too large
View File