mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2025-02-01 11:56:44 +01:00
Create 2023_03_09_121613_update_columns_to_text_type.php
https://github.com/JulianPrieber/littlelink-custom/issues/328
This commit is contained in:
parent
7a37f50231
commit
6d9ffdff56
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class UpdateColumnsToTextType extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::table('users', function (Blueprint $table) {
|
||||
$table->text('littlelink_description')->change();
|
||||
});
|
||||
|
||||
Schema::table('links', function (Blueprint $table) {
|
||||
$table->text('title')->change();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::table('users', function (Blueprint $table) {
|
||||
$table->string('littlelink_description', 255)->change();
|
||||
});
|
||||
|
||||
Schema::table('links', function (Blueprint $table) {
|
||||
$table->string('title', 255)->change();
|
||||
});
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user