25 lines
524 B
PHP
25 lines
524 B
PHP
<?php
|
|
|
|
namespace itguild\forms\form\migrations;
|
|
use Illuminate;
|
|
|
|
class InputsTypeMigration
|
|
{
|
|
public static function up(): void
|
|
{
|
|
|
|
Illuminate\Database\Capsule\Manager::schema()->create("input_type", function ($table) {
|
|
$table->id('id');
|
|
$table->string('type');
|
|
$table->string('name');
|
|
$table->integer('status');
|
|
});
|
|
|
|
}
|
|
|
|
public static function down(): void
|
|
{
|
|
Illuminate\Database\Capsule\Manager::schema()->drop("input_type");
|
|
}
|
|
|
|
} |