Archived
1
0
This repository has been archived on 2024-05-04. You can view files and clone it, but cannot push or open issues or pull requests.
cyca/database/migrations/2021_08_15_193704_create_feeds_table.php
2022-01-12 00:35:37 +01:00

38 lines
879 B
PHP
Executable File

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateFeedsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('feeds', function (Blueprint $table) {
$table->bigIncrements('id');
$table->text('url');
$table->text('error')->nullable();
$table->text('title')->nullable();
$table->text('description')->nullable();
$table->text('favicon_path')->nullable();
$table->dateTime('checked_at')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('feeds');
}
}