Files
Business-credit-asistant/database/migrations/2022_11_07_140834_create_contents_table.php
2026-06-29 13:00:18 +06:00

33 lines
632 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateContentsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('contents', function (Blueprint $table) {
$table->id();
$table->string('terms_service',500);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('contents');
}
}