����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 18.190.156.78 Web Server : Apache/2.4.41 (Ubuntu) System : Linux ubuntu 5.4.0-163-generic #180-Ubuntu SMP Tue Sep 5 13:21:23 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/phpmyadmin/templates/table/tracking/ |
Upload File : |
<h3>{% trans 'Structure' %}</h3> <table id="tablestructure" class="data"> <thead> <tr> <th>{% trans %}#{% context %}Number{% endtrans %}</th> <th>{% trans 'Column' %}</th> <th>{% trans 'Type' %}</th> <th>{% trans 'Collation' %}</th> <th>{% trans 'Null' %}</th> <th>{% trans 'Default' %}</th> <th>{% trans 'Extra' %}</th> <th>{% trans 'Comment' %}</th> </tr> </thead> <tbody> {% set index = 1 %} {% for field in columns %} <tr class="noclick"> <td>{{ index }}</td> {% set index = index + 1 %} <td> <strong> {{ field['Field'] }} {% if field['Key'] == 'PRI' %} {{ Util_getImage('b_primary', 'Primary'|trans) }} {% elseif field['Key'] is not empty %} {{ Util_getImage('bd_primary', 'Index'|trans) }} {% endif %} </strong> </td> <td>{{ field['Type'] }}</td> <td>{{ field['Collation'] }}</td> <td>{{ field['Null'] == 'YES' ? 'Yes'|trans : 'No'|trans }}</td> <td> {% if field['Default'] is defined %} {% set extracted_columnspec = Util_extractColumnSpec(field['Type']) %} {% if extracted_columnspec['type'] == 'bit' %} {# here, $field['Default'] contains something like b'010' #} {{ Util_convertBitDefaultValue(field['Default']) }} {% else %} {{ field['Default'] }} {% endif %} {% else %} {% if field['Null'] == 'YES' %} <em>NULL</em> {% else %} <em>{% trans %}None{% context %}None for default{% endtrans %}</em> {% endif %} {% endif %} </td> <td>{{ field['Extra'] }}</td> <td>{{ field['Comment'] }}</td> </tr> {% endfor %} </tbody> </table>