Файловый менеджер - Редактировать - /home/clickysoft/public_html/securebeans.clickysoft.net/database/migrations/2021_12_27_143417_create_employees_table.php
Назад
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateEmployeesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('employees', function (Blueprint $table) { $table->bigIncrements('id'); // $table->bigIncrements('user_id')->unsigned(); // $table->foreign('user_id')->references('id')->on('users'); // $table->string('first_name')->nullable(); // $table->string('last_name')->nullable(); // $table->string('email')->nullable(); // $table->string('phone')->nullable(); // $table->string('address')->nullable(); // $table->string('skype')->nullable(); // $table->string('website')->nullable(); // $table->longText('description')->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('employees'); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка