mirror of
https://github.com/robonen/education-project.git
synced 2026-03-20 02:44:31 +00:00
34 lines
652 B
PHP
34 lines
652 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class CreateThemesTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('themes', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->string('name');
|
|
$table->string('variant');
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('themes');
|
|
}
|
|
}
|