Changes
This commit is contained in:
+32
@@ -0,0 +1,32 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*/
|
||||||
|
public function up()
|
||||||
|
{
|
||||||
|
Schema::table('teachers_departments', function (Blueprint $table) {
|
||||||
|
$table->renameColumn('email', 'service_email');
|
||||||
|
$table->renameColumn('phone', 'service_phone');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Откатить миграцию.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function down()
|
||||||
|
{
|
||||||
|
Schema::table('teachers_departments', function (Blueprint $table) {
|
||||||
|
$table->renameColumn('service_email', 'email');
|
||||||
|
$table->renameColumn('service_phone', 'phone');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
<path d="M5 1L10.6869 7.16086C10.8637 7.35239 10.8637 7.64761 10.6869 7.83914L5 14"
|
<path d="M5 1L10.6869 7.16086C10.8637 7.35239 10.8637 7.64761 10.6869 7.83914L5 14"
|
||||||
stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
|
stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
|
||||||
</svg>
|
</svg>
|
||||||
{{ postTitle }}
|
{{ textLimit(postTitle, 60) }}
|
||||||
</Link>
|
</Link>
|
||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
@@ -82,7 +82,7 @@
|
|||||||
</li>
|
</li>
|
||||||
<li class="text-sm">
|
<li class="text-sm">
|
||||||
<Link :href="$page.props.ziggy.location" class="flex items-center text-gray-500 hover:text-blue-600">
|
<Link :href="$page.props.ziggy.location" class="flex items-center text-gray-500 hover:text-blue-600">
|
||||||
{{ postTitle }}
|
{{ textLimit(postTitle, 60) }}
|
||||||
</Link>
|
</Link>
|
||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
|||||||
@@ -298,7 +298,8 @@ export default {
|
|||||||
<style>
|
<style>
|
||||||
|
|
||||||
.styled-scrollbar {
|
.styled-scrollbar {
|
||||||
overflow: hidden;
|
overflow-x: hidden;
|
||||||
|
overflow-y: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.paragraph-container a {
|
.paragraph-container a {
|
||||||
|
|||||||
@@ -236,7 +236,8 @@ export default {
|
|||||||
<style>
|
<style>
|
||||||
|
|
||||||
.styled-scrollbar {
|
.styled-scrollbar {
|
||||||
overflow: hidden !important;
|
overflow-x: hidden;
|
||||||
|
overflow-y: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -283,7 +283,8 @@ export default {
|
|||||||
<style>
|
<style>
|
||||||
|
|
||||||
.styled-scrollbar {
|
.styled-scrollbar {
|
||||||
overflow: hidden;
|
overflow-x: hidden;
|
||||||
|
overflow-y: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user