32 lines
718 B
PHP
32 lines
718 B
PHP
<?php namespace RainLab\Blog\Updates;
|
|
|
|
use Schema;
|
|
use October\Rain\Database\Updates\Migration;
|
|
use RainLab\Blog\Models\Category as CategoryModel;
|
|
|
|
class PostsAddMetadata extends Migration
|
|
{
|
|
|
|
public function up()
|
|
{
|
|
if (Schema::hasColumn('rainlab_blog_posts', 'metadata')) {
|
|
return;
|
|
}
|
|
|
|
Schema::table('rainlab_blog_posts', function($table)
|
|
{
|
|
$table->mediumText('metadata')->nullable();
|
|
});
|
|
}
|
|
|
|
public function down()
|
|
{
|
|
if (Schema::hasColumn('rainlab_blog_posts', 'metadata')) {
|
|
Schema::table('rainlab_blog_posts', function ($table) {
|
|
$table->dropColumn('metadata');
|
|
});
|
|
}
|
|
}
|
|
|
|
}
|