'id', 'type' => 'bigint', 'length' => '20', 'unsigned' => true, 'extra' => 'auto_increment', 'primary' => true, 'sortable' => true, ), array( 'name' => 'name', 'type' => 'varchar', 'searchable' => true, 'sortable' => true, 'transition' => true, ), array( 'name' => 'slug', 'type' => 'tinytext', 'default' => '', 'searchable' => true, 'sortable' => true, 'transition' => true, ), array( 'name' => 'active', 'type' => 'tinyint', 'length' => '4', 'unsigned' => true, 'default' => 1, 'transition' => true, 'sortable' => true, ), array( 'name' => 'settings', 'type' => 'longtext', 'default' => '', 'transition' => true, 'allow_null' => false, ), array( 'name' => 'custom_css', 'type' => 'longtext', 'default' => '', 'allow_null' => true, ), array( 'name' => 'allowed_countries', 'type' => 'text', 'default' => '', 'allow_null' => true, ), array( 'name' => 'date_created', 'type' => 'datetime', 'default' => null, 'created' => true, 'date_query' => true, 'sortable' => true, 'allow_null' => true, ), array( 'name' => 'date_modified', 'type' => 'datetime', 'default' => null, 'modified' => true, 'date_query' => true, 'sortable' => true, 'allow_null' => true, ), ); }