1
0
Fork 0
mirror of https://github.com/Oreolek/kohana-migrations.git synced 2024-06-26 03:40:54 +03:00

Adding syspath checks to files

This commit is contained in:
Matt Button 2011-01-31 17:38:04 +00:00
parent 628f2b21c3
commit 8c92824af1
13 changed files with 13 additions and 14 deletions

View file

@ -1,4 +1,4 @@
<?php <?php defined('SYSPATH') or die('No direct script access.');
/** /**
* Controller for interacting with minion on the cli * Controller for interacting with minion on the cli

View file

@ -1,4 +1,4 @@
<?php <?php defined('SYSPATH') or die('No direct script access.');
/** /**
* The base migration class, must be extended by all migration files * The base migration class, must be extended by all migration files

View file

@ -1,4 +1,4 @@
<?php <?php defined('SYSPATH') or die('No direct script access.');
/** /**
* A faux database connection for doing dry run migrations * A faux database connection for doing dry run migrations

View file

@ -1,4 +1,4 @@
<?php <?php defined('SYSPATH') or die('No direct script access.');
/** /**
* Minion exception, thrown during a migration error * Minion exception, thrown during a migration error

View file

@ -1,4 +1,4 @@
<?php <?php defined('SYSPATH') or die('No direct script access.');
/** /**
* The migration manager is responsible for locating migration files, syncing * The migration manager is responsible for locating migration files, syncing

View file

@ -1,4 +1,4 @@
<?php <?php defined('SYSPATH') or die('No direct script access.');
/** /**

View file

@ -1,4 +1,4 @@
<?php <?php defined('SYSPATH') or die('No direct script access.');
/** /**
* Interface that all minion tasks must implement * Interface that all minion tasks must implement

View file

@ -1,10 +1,9 @@
<?php <?php defined('SYSPATH') or die('No direct script access.');
/** /**
* Purges the application, requires at least one cache configuration group to be * Purges the application, requires at least one cache configuration group to be
* specified * specified
* *
*
* Available config options: * Available config options:
* *
* --cache=cache1[,cache2,cache2...] * --cache=cache1[,cache2,cache2...]

View file

@ -1,4 +1,4 @@
<?php <?php defined('SYSPATH') or die('No direct script access.');
/** /**
* The generate task provides an easy way to create migration files * The generate task provides an easy way to create migration files

View file

@ -1,4 +1,4 @@
<?php <?php defined('SYSPATH') or die('No direct script access.');
/** /**
* The Migrate task compares the current version of the database with the target * The Migrate task compares the current version of the database with the target

View file

@ -1,4 +1,4 @@
<?php <?php defined('SYSPATH') or die('No direct script access.');
/** /**
* Displays the current status of migrations in all locations * Displays the current status of migrations in all locations

View file

@ -1,4 +1,4 @@
<?php <?php defined('SYSPATH') or die('No direct script access.');
/** /**

View file

@ -1,4 +1,4 @@
<?php <?php defined('SYSPATH') or die('No direct script access.');
/** /**
* Model for managing migrations * Model for managing migrations