2017-10-10 15:58:07 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
|
|
|
|
class CreateBookmarksTable extends Migration
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
|
|
|
Schema::create('bookmarks', function (Blueprint $table) {
|
|
|
|
$table->increments('id');
|
|
|
|
$table->string('url');
|
|
|
|
$table->string('name')->nullable();
|
|
|
|
$table->text('content')->nullable();
|
2017-10-13 12:31:31 +01:00
|
|
|
$table->uuid('screenshot')->nullable();
|
2017-10-13 12:55:39 +01:00
|
|
|
$table->string('archve')->nullable();
|
2017-10-10 15:58:07 +01:00
|
|
|
$table->timestamps();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function down()
|
|
|
|
{
|
|
|
|
Schema::dropIfExists('bookmarks');
|
|
|
|
}
|
|
|
|
}
|