BookStack/database/migrations/2015_07_12_190027_create_pages_table.php

38 lines
830 B
PHP
Raw Normal View History

2015-07-12 19:01:42 +00:00
<?php
use Illuminate\Database\Migrations\Migration;
2021-06-26 15:23:15 +00:00
use Illuminate\Database\Schema\Blueprint;
2015-07-12 19:01:42 +00:00
class CreatePagesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('pages', function (Blueprint $table) {
2015-07-12 19:01:42 +00:00
$table->increments('id');
2015-07-12 20:31:15 +00:00
$table->integer('book_id');
2015-07-27 19:17:08 +00:00
$table->integer('chapter_id');
2015-07-12 20:31:15 +00:00
$table->string('name');
$table->string('slug')->indexed();
$table->longText('html');
$table->longText('text');
$table->integer('priority');
2016-02-16 21:25:11 +00:00
$table->nullableTimestamps();
2015-07-12 19:01:42 +00:00
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('pages');
}
}