infojune/database/migrations/2020_10_03_093440_create_co...

39 lines
835 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('name');
$table->text('description');
$table->text('href');
$table->text('img');
$table->text('path');
$table->text('creator');
$table->text("licence");
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('contents');
}
}