11 lines
202 B
Python
11 lines
202 B
Python
|
|
# -*- coding: utf-8 -*-
|
||
|
|
"""
|
||
|
|
Pre-migration script for version 18.0.1.7.0
|
||
|
|
|
||
|
|
- Updates security rules for player removal features
|
||
|
|
"""
|
||
|
|
|
||
|
|
def migrate(cr, version):
|
||
|
|
# No pre-migration steps needed
|
||
|
|
pass
|