Seditio Source
Root |
./othercms/croogo-4.0.7/vendor/croogo/croogo/Comments/config/Migrations/20160807105013_CommentsInitialMigration.php
<?php

use Migrations\AbstractMigration;

class
CommentsInitialMigration extends AbstractMigration
{
    public function
up()
    {

       
$this->table('comments')
            ->
addColumn('parent_id', 'integer', [
               
'default' => null,
               
'limit' => 20,
               
'null' => true,
            ])
            ->
addColumn('model', 'string', [
               
'default' => 'Node',
               
'limit' => 50,
               
'null' => false,
            ])
            ->
addColumn('foreign_key', 'integer', [
               
'default' => null,
               
'limit' => 20,
               
'null' => false,
            ])
            ->
addColumn('user_id', 'integer', [
               
'default' => null,
               
'limit' => 20,
               
'null' => true,
            ])
            ->
addColumn('name', 'string', [
               
'default' => null,
               
'limit' => 50,
               
'null' => true,
            ])
            ->
addColumn('email', 'string', [
               
'default' => null,
               
'limit' => 100,
               
'null' => true,
            ])
            ->
addColumn('website', 'string', [
               
'default' => null,
               
'limit' => 200,
               
'null' => true,
            ])
            ->
addColumn('ip', 'string', [
               
'default' => null,
               
'limit' => 100,
               
'null' => true,
            ])
            ->
addColumn('title', 'string', [
               
'default' => null,
               
'limit' => 255,
               
'null' => true,
            ])
            ->
addColumn('body', 'text', [
               
'default' => null,
               
'limit' => null,
               
'null' => false,
            ])
            ->
addColumn('rating', 'integer', [
               
'default' => null,
               
'limit' => 11,
               
'null' => true,
            ])
            ->
addColumn('status', 'boolean', [
               
'default' => false,
               
'limit' => null,
               
'null' => false,
            ])
            ->
addColumn('notify', 'boolean', [
               
'default' => false,
               
'limit' => null,
               
'null' => false,
            ])
            ->
addColumn('type', 'string', [
               
'default' => null,
               
'limit' => 100,
               
'null' => false,
            ])
            ->
addColumn('comment_type', 'string', [
               
'default' => 'comment',
               
'limit' => 100,
               
'null' => false,
            ])
            ->
addColumn('lft', 'integer', [
               
'default' => null,
               
'limit' => 11,
               
'null' => true,
            ])
            ->
addColumn('rght', 'integer', [
               
'default' => null,
               
'limit' => 11,
               
'null' => true,
            ])
            ->
addTimestamps('created', 'updated')
            ->
addColumn('created_by', 'integer', [
               
'default' => null,
               
'limit' => 20,
               
'null' => true,
            ])
            ->
addColumn('updated_by', 'integer', [
               
'default' => null,
               
'limit' => 20,
               
'null' => true,
            ])
            ->
addForeignKey('user_id', 'users', ['id'], [
               
'constraint' => 'fk_comments2users',
               
'delete' => 'RESTRICT',
            ])
            ->
addIndex(
                [
                   
'model',
                   
'foreign_key',
                ]
            )
            ->
create();
    }

    public function
down()
    {
       
$this->table('comments')->drop()->save();
    }
}