CHips L MINI SHELL

CHips L pro

Current Path : /proc/2/cwd/opt/cpanel/ea-php56/root/usr/share/pear/RVSeagullMod/modules/block/data/
Upload File :
Current File : //proc/2/cwd/opt/cpanel/ea-php56/root/usr/share/pear/RVSeagullMod/modules/block/data/schema.my.sql

/*==============================================================*/
/* Table: block                                                 */
/*==============================================================*/
create table if not exists block
(
   block_id                       int                            not null,
   name                           varchar(64),
   title                          varchar(32),
   title_class                    varchar(32),
   body_class                     varchar(32),
   blk_order                      smallint,
   position                       varchar(16),
   is_enabled                     smallint,
   is_cached                      smallint,
   params                         longtext,
   primary key (block_id)
) ENGINE=MyISAM;

/*==============================================================*/
/* Table: block_assignment                                      */
/*==============================================================*/
create table if not exists block_assignment
(
   block_id                       int                            not null,
   section_id                     int                            not null,
   primary key (block_id, section_id)
) ENGINE=MyISAM;

/*==============================================================*/
/* Index: block_assignment_fk                                   */
/*==============================================================*/
create index block_assignment_fk on block_assignment
(
   block_id
);

/*==============================================================*/
/* Index: block_assignment_fk2                                  */
/*==============================================================*/
create index block_assignment_fk2 on block_assignment
(
   section_id
);
-- ==============================================================
--  table block_role
--  DK 
-- ==============================================================
create table if not exists block_role (
    block_id integer not null,
    role_id integer not null
) ENGINE=MyISAM;

Copyright 2K16 - 2K18 Indonesian Hacker Rulez