PostgreSQL Support (#4486)
Co-authored-by: Matthew Penner <matthew@pterodactyl.io>
This commit is contained in:
parent
21613fa602
commit
3bf5a71802
223 changed files with 912 additions and 1052 deletions
|
@ -10,7 +10,7 @@ class MigrateSettingsTableToNewFormat extends Migration
|
|||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up()
|
||||
public function up(): void
|
||||
{
|
||||
DB::table('settings')->truncate();
|
||||
Schema::table('settings', function (Blueprint $table) {
|
||||
|
@ -21,7 +21,7 @@ class MigrateSettingsTableToNewFormat extends Migration
|
|||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down()
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('settings', function (Blueprint $table) {
|
||||
$table->dropColumn('id');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue