app\models\Project::tableName PHP Method

tableName() public static method

public static tableName ( )
    public static function tableName()
    {
        return 'project';
    }

Usage Example

 public function down()
 {
     $this->dropColumn(Project::tableName(), 'post_release');
     $this->renameColumn(Project::tableName(), 'pre_release', 'post_release');
     echo "m151014_115546_add_pre_release_task be reverted.\n";
     return true;
 }
All Usage Examples Of app\models\Project::tableName