Skip to content

Commit

Permalink
Remove i18n_ prefix from I18nMessage and I18nSourceMessage table names
Browse files Browse the repository at this point in the history
  • Loading branch information
thecodeholic committed Jan 26, 2017
1 parent 7271f2d commit f2afe9a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion models/I18nMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class I18nMessage extends \yii\db\ActiveRecord
*/
public static function tableName()
{
return '{{%i18n_message}}';
return '{{%message}}';
}

/**
Expand Down
2 changes: 1 addition & 1 deletion models/I18nSourceMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class I18nSourceMessage extends ActiveRecord
*/
public static function tableName()
{
return '{{%i18n_source_message}}';
return '{{%source_message}}';
}

/**
Expand Down

0 comments on commit f2afe9a

Please sign in to comment.