One Hat Cyber Team
Your IP :
3.144.130.238
Server IP :
104.21.80.1
Server :
Linux agrigation-prod 5.15.0-67-generic #74-Ubuntu SMP Wed Feb 22 14:14:39 UTC 2023 x86_64
Server Software :
nginx/1.24.0
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
forge
/
db.gftag.com
/
templates
/
table
/
tracking
/
View File Name :
structure_snapshot_indexes.twig
<h3>{% trans 'Indexes' %}</h3> <table id="tablestructure_indexes" class="table table-striped table-hover"> <thead> <tr> <th>{% trans 'Keyname' %}</th> <th>{% trans 'Type' %}</th> <th>{% trans 'Unique' %}</th> <th>{% trans 'Packed' %}</th> <th>{% trans 'Column' %}</th> <th>{% trans 'Cardinality' %}</th> <th>{% trans 'Collation' %}</th> <th>{% trans 'Null' %}</th> <th>{% trans 'Comment' %}</th> </tr> </thead> <tbody> {% for index in indexes %} <tr class="noclick"> <td> <strong>{{ index['Key_name'] }}</strong> </td> <td>{{ index['Index_type'] }}</td> <td>{{ index['Non_unique'] == 0 ? 'Yes'|trans : 'No'|trans }}</td> <td>{{ index['Packed'] != '' ? 'Yes'|trans : 'No'|trans }}</td> <td>{{ index['Column_name'] }}</td> <td>{{ index['Cardinality'] }}</td> <td>{{ index['Collation'] }}</td> <td>{{ index['Null'] }}</td> <td>{{ index['Comment'] }}</td> </tr> {% endfor %} </tbody> </table>