Skip to content
This repository has been archived by the owner on Jun 18, 2019. It is now read-only.

Commit

Permalink
Fixes in readme file.
Browse files Browse the repository at this point in the history
  • Loading branch information
dimsav committed Feb 13, 2015
1 parent 1e57cb2 commit df16887
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,13 @@ If you want to store translations of your models into the database, this package

## Laravel compatibility

!! Version 5 will be stable after laravel 5 is released

Laravel | Translatable
:---------|:----------
4.0.x | 4.3.x
4.1.x | 4.4.x
4.2.x | 4.4.x
5.0.x | 5.x
4.2.x | 4.4.x
4.1.x | 4.4.x
4.0.x | 4.3.x


## Demo

Expand Down Expand Up @@ -184,12 +183,12 @@ For tables already created in production, update your migrations to change the e
```php
public function up()
{
DB::statement('ALTER TABLE countries ENGINE=InnoDB');
DB::statement('ALTER TABLE countries ENGINE=InnoDB');
}

public function down()
{
DB::statement('ALTER TABLE countries ENGINE=MyISAM');
DB::statement('ALTER TABLE countries ENGINE=MyISAM');
}
```

Expand Down

0 comments on commit df16887

Please sign in to comment.