Files
estimation-flow/local.db-wal
T

120 lines
44 KiB
Plaintext
Raw Normal View History

7DPñêî„.ºôM#DPñêõjÀžøSQLite format 3@ 
.†*
 ÖÌ8
¬ î é
 ¸ò ÒÖ«««CetableusersusersCREATE TABLE users (
id INTEGER PRIMARY KEY AUTOINCREMENT,
email TEXT UNIQUE NOT NULL,
password TEXT NOT NULL,
name TEXT NOT NULL
, emailVerified INTEGER)R
33Ktableverification_tokensverification_tokensCREATE TABLE verification_tokens (
identifier TEXT NOT NULL,
token TEXT NOT NULL,
expires INTEGER NOT NULL,
PRIMARY KEY (identifier, token)
)EY3indexsqlite_autoindex_verification_tokens_1verification_tokens] ƒ
tablesessionssessions CREATE TABLE sessions (
sessionToken TEXT NOT NULL PRIMARY KEY,
userId TEXT NOT NULL,
expires INTEGER NOT NULL,
FOREIGN KEY (userId) REFERENCES users (id) ON DELETE CASCADE
)/ Cindexsqlite_autoindex_sessions_1sessions
ƒ2 †7tableaccountsaccounts
CREATE TABLE accounts (
userId TEXT NOT NULL,
type TEXT NOT NULL,
provider TEXT NOT NULL,
providerAccountId TEXT NOT NULL,
refresh_token TEXT,
access_token TEXT,
expires_at INTEGER,
token_type TEXT,
scope TEXT,
id_token TEXT,
session_state TEXT,
PRIMARY KEY (provider, providerAccountId),
FOREIGN KEY (userId) REFERENCES users (id) ON DELETE CASCADE
)/
Cindexsqlite_autoindex_accounts_1accounts ƒctableflowsflows CREATE TABLE flows (
id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL,
description TEXT,
path TEXT NOT NULL,
createdAt DATETIME DEFAULT CURRENT_TIMESTAMP,
updatedAt DATETIME DEFAULT CURRENT_TIMESTAMP
);UtableleadsleadsCREATE TABLE leads (
id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL,
email TEXT NOT NULL,
createdAt DATETIME DEFAULT CURRENT_TIMESTAMP
) ++Itableemail_templatesemail_templatesCREATE TABLE email_templates (
id INTEGER PRIMARY KEY,
subject TEXT,
body TEXT
)atablesettingssettingsCREATE TABLE settings (
key TEXT PRIMARY KEY,
value TEXT
)/Cindexsqlite_autoindex_settings_1settingsP++Ytablesqlite_sequencesqlite_sequenceCREATE TABLE sqlite_sequence(name,seq)â7tableusersusersCREATE TABLE users (
id INTEGER PRIMARY KEY AUTOINCREMENT,
email TEXT UNIQUE NOT NULL,
password TEXT NOT NULL,
name TEXT NOT NULL
))=indexsqlite_autoindex_users_1usersDPñê"õ0J&g0
×
usersDPñê´1ó›¢ÊfSQLite format 3@  .†*
Ì8
¬ î é
 ¸ò ÒÖ«Í¢C=YtableusersusersCREATE TABLE users (
id TEXT NOT NULL PRIMARY KEY,
name TEXT,
email TEXT NOT NULL UNIQUE,
emailVerified INTEGER,
image TEXT,
password TEXT
)R
33Ktableverification_tokensverification_tokensCREATE TABLE verification_tokens (
identifier TEXT NOT NULL,
token TEXT NOT NULL,
expires INTEGER NOT NULL,
PRIMARY KEY (identifier, token)
)EY3indexsqlite_autoindex_verification_tokens_1verification_tokens] ƒ
tablesessionssessions CREATE TABLE sessions (
sessionToken TEXT NOT NULL PRIMARY KEY,
userId TEXT NOT NULL,
expires INTEGER NOT NULL,
FOREIGN KEY (userId) REFERENCES users (id) ON DELETE CASCADE
)/ Cindexsqlite_autoindex_sessions_1sessions
ƒ2 †7tableaccountsaccounts
CREATE TABLE accounts (
userId TEXT NOT NULL,
type TEXT NOT NULL,
provider TEXT NOT NULL,
providerAccountId TEXT NOT NULL,
refresh_token TEXT,
access_token TEXT,
expires_at INTEGER,
token_type TEXT,
scope TEXT,
id_token TEXT,
session_state TEXT,
PRIMARY KEY (provider, providerAccountId),
FOREIGN KEY (userId) REFERENCES users (id) ON DELETE CASCADE
)/
Cindexsqlite_autoindex_accounts_1accounts ƒctableflowsflows CREATE TABLE flows (
id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL,
description TEXT,
path TEXT NOT NULL,
createdAt DATETIME DEFAULT CURRENT_TIMESTAMP,
updatedAt DATETIME DEFAULT CURRENT_TIMESTAMP
);UtableleadsleadsCREATE TABLE leads (
id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL,
email TEXT NOT NULL,
createdAt DATETIME DEFAULT CURRENT_TIMESTAMP
) ++Itableemail_templatesemail_templatesCREATE TABLE email_templates (
id INTEGER PRIMARY KEY,
subject TEXT,
body TEXT
)atablesettingssettingsCREATE TABLE settings (