29 lines
725 B
PHP
29 lines
725 B
PHP
<?php
|
|
|
|
namespace Renatio\DynamicPDF\Updates;
|
|
|
|
use October\Rain\Database\Schema\Blueprint;
|
|
use October\Rain\Database\Updates\Migration;
|
|
use October\Rain\Support\Facades\Schema;
|
|
|
|
class CreateLayoutsTable extends Migration
|
|
{
|
|
|
|
public function up()
|
|
{
|
|
Schema::create('renatio_dynamicpdf_pdf_layouts', function (Blueprint $table) {
|
|
$table->increments('id');
|
|
$table->string('code')->index();
|
|
$table->string('name');
|
|
$table->text('content_html')->nullable();
|
|
$table->text('content_css')->nullable();
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('renatio_dynamicpdf_pdf_layouts');
|
|
}
|
|
}
|