This file is indexed.

/usr/lib/python2.7/dist-packages/migrate/tests/fixture/models.py is in python-migrate 0.11.0-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
from sqlalchemy import *

# test rundiffs in shell
meta_old_rundiffs = MetaData()
meta_rundiffs = MetaData()
meta = MetaData()

tmp_account_rundiffs = Table('tmp_account_rundiffs', meta_rundiffs,
    Column('id', Integer, primary_key=True),
    Column('login', Text()),
    Column('passwd', Text()),
)

tmp_sql_table = Table('tmp_sql_table', meta, Column('id', Integer))