1
0
Fork 0
mirror of https://github.com/Oreolek/kohana-migrations.git synced 2024-06-16 15:01:08 +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

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

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

View file

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

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

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
* specified
*
*
* Available config options:
*
* --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

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

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

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