33 lines
627 B
Plaintext
33 lines
627 B
Plaintext
|
<?php
|
||
|
|
||
|
use core\App;
|
||
|
use Illuminate\Database\Migrations\Migration;
|
||
|
use Illuminate\Database\Schema\Blueprint;
|
||
|
use Illuminate\Support\Facades\Schema;
|
||
|
|
||
|
class DummyClass extends Migration
|
||
|
{
|
||
|
/**
|
||
|
* Run the migrations.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function up()
|
||
|
{
|
||
|
App::$db->schema->create('DummyTable', function (Blueprint $table) {
|
||
|
$table->bigIncrements('id');
|
||
|
$table->timestamps();
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Reverse the migrations.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function down()
|
||
|
{
|
||
|
App::$db->schema->dropIfExists('DummyTable');
|
||
|
}
|
||
|
}
|