Skip to content

Commit

Permalink
Merge branch 'hotfix/0.1.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
velnae committed Jan 24, 2019
2 parents 382ee83 + 92b5bc1 commit e189e22
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ When all goes well it will create a file under migrations called 001_create_base
```php
function make_base(){

$this->load->library('ci_migrations_generator/Generator');
$this->load->library('ci_migrations_generator/Sqltoci');

// All Tables:

$this->generator->generate();
$this->sqltoci->generate();

//Single Table:

$this->generator->generate('table');
$this->sqltoci->generate('table');

}
```
Expand Down
2 changes: 1 addition & 1 deletion Generator.php → Sqltoci.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* @version 0.1.0 Beta
*
*/
class Generator {
class Sqltoci {

var $db_user;
var $db_pass;
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.1
0.1.2

0 comments on commit e189e22

Please sign in to comment.