1
0
Fork 0
mirror of https://github.com/Oreolek/kohana-migrations.git synced 2024-06-16 15:01:08 +03:00

Namespacing the migrations table, fixes #10

This commit is contained in:
Matt Button 2011-01-20 23:12:06 +00:00
parent 75c2c27f08
commit 973a1d10ea
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@ class Model_Minion_Migration extends Model
* The table that's used to store the migrations
* @var string
*/
protected $_table = 'migrations';
protected $_table = 'minion_migrations';
/**
* Constructs the model, taking a Database connection as the first and only

View file

@ -1,6 +1,6 @@
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `migrations` (
CREATE TABLE `minion_migrations` (
`timestamp` varchar(14) NOT NULL,
`description` varchar(100) NOT NULL,
`location` varchar(100) NOT NULL,