Cloudlog/application/migrations/057_new_stylesheet_default.php
Paul Beesley 301483bddf Change the way themes are processed
Place themes in subfolders and use the folder name in the DB instead of the path to a single CSS file
2020-12-07 09:55:30 +00:00

18 lines
401 B
PHP

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Migration_new_stylesheet_default extends CI_Migration {
public function up()
{
$sql = "UPDATE users SET user_stylesheet = 'default'";
$this->db->query($sql);
}
public function down()
{
$sql = "UPDATE users SET user_stylesheet = 'bootstrap.min.css'";
$this->db->query($sql);
}
}