Files
old-riskletpy/risklet.db

41 lines
20 KiB
Plaintext
Raw Normal View History

2024-10-27 17:54:12 +01:00
SQLite format 3@ .zq  )(<0E> <0C> )<00>1++<01>tableAdvancedProfileAdvancedProfileCREATE TABLE AdvancedProfile (
id INTEGER PRIMARY KEY AUTOINCREMENT,
CompanyId INTEGER,
GeographicDistribution TEXT,
CustomerConcentration TEXT,
ProductServicePortfolio TEXT,
OrganizationalCulture TEXT,
SupplierDiversity TEXT,
TechnologicalInfrastructure TEXT,
IntellectualProperty TEXT,
ManagementTeamExperience TEXT,
FOREIGN KEY (CompanyId) REFERENCES Company(id)
)<29>v%%<01>/tableBasicProfileBasicProfileCREATE TABLE BasicProfile (
id INTEGER PRIMARY KEY AUTOINCREMENT,
CompanyId INTEGER,
Employees TEXT,
Revenue TEXT,
Applications TEXT,
Compliance TEXT,
Industry TEXT,
ITDependency TEXT,
DataSensitivity TEXT,
DataVolume TEXT,
NetworkSegmentation TEXT,
LegacySystems TEXT,
IoTIntegration TEXT,
RemoteWork TEXT,
BYOD TEXT,
VPN TEXT,
API TEXT,
VendorAccess TEXT,
InternalDev TEXT,
FOREIGN KEY (CompanyId) REFERENCES Company(id)
)P++Ytablesqlite_sequencesqlite_sequenceCREATE TABLE sqlite_sequence(name,seq)<29>U<01>tableCompanyCompanyCREATE TABLE Company (
id INTEGER PRIMARY KEY AUTOINCREMENT,
UUID TEXT NOT NULL,
Name TEXT NOT NULL,
TaxId TEXT NOT NULL,
Email TEXT NOT NULL,
Password TEXT NOT NULL
)