Jeeeede Menge updates.
This commit is contained in:
3
resources/stubs/vendor/laravel-migration-generator/table-create.stub
vendored
Normal file
3
resources/stubs/vendor/laravel-migration-generator/table-create.stub
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
Schema::create('[TableName]', function (Blueprint $table) {
|
||||
[Schema]
|
||||
});
|
3
resources/stubs/vendor/laravel-migration-generator/table-modify.stub
vendored
Normal file
3
resources/stubs/vendor/laravel-migration-generator/table-modify.stub
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
Schema::table('[TableName]', function (Blueprint $table) {
|
||||
[Schema]
|
||||
});
|
28
resources/stubs/vendor/laravel-migration-generator/table.stub
vendored
Normal file
28
resources/stubs/vendor/laravel-migration-generator/table.stub
vendored
Normal 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]
|
||||
}
|
||||
}
|
43
resources/stubs/vendor/laravel-migration-generator/view.stub
vendored
Normal file
43
resources/stubs/vendor/laravel-migration-generator/view.stub
vendored
Normal 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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user