Jeeeede Menge updates.

This commit is contained in:
2023-02-23 18:58:41 +01:00
parent f7cc73da22
commit dbf004b0b0
118 changed files with 46202 additions and 32 deletions

View File

@@ -0,0 +1,3 @@
Schema::create('[TableName]', function (Blueprint $table) {
[Schema]
});

View File

@@ -0,0 +1,3 @@
Schema::table('[TableName]', function (Blueprint $table) {
[Schema]
});

View File

@@ -0,0 +1,28 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class Create[TableName:Studly]Table extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
[TableUp]
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
[TableDown]
}
}

View File

@@ -0,0 +1,43 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class Create[ViewName:Studly]View extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
DB::statement($this->dropView());
DB::statement($this->createView());
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
DB::statement($this->dropView());
}
private function createView()
{
return <<<SQL
[Schema]
SQL;
}
private function dropView()
{
return <<<SQL
DROP VIEW IF EXISTS `[ViewName]`;
SQL;
}
}