mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
23 lines
565 B
PHP
23 lines
565 B
PHP
<?php
|
|
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
/*
|
|
* Just an empty placeholder. To keep compatibility for the migration from Cloudlog to Wavelog we need an empty migration here as placeholder.
|
|
* Find the tutorial here: https://github.com/wavelog/Wavelog/wiki/How-to-migrate-Cloudlog-to-Wavelog
|
|
*/
|
|
|
|
class Migration_welcome_to_wavelog extends CI_Migration {
|
|
|
|
public function up()
|
|
{
|
|
|
|
// Nothing happening here
|
|
|
|
}
|
|
|
|
public function down()
|
|
{
|
|
// No rollback available. This is just a placeholder.
|
|
}
|
|
} |