1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
7� -� �m˝��or�p�/
) �m˝��o
��
�.� SQLite format 3 @ .zp
� � �� �)--�table_sqlx_migrations_sqlx_migrationsCREATE TABLE _sqlx_migrations (
version BIGINT PRIMARY KEY,
description TEXT NOT NULL,
installed_on TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
success BOOLEAN NOT NULL,
checksum BLOB NOT NULL,
execution_time BIGINT NOT NULL
)?S- indexsqlite_autoindex__sqlx_migrations_1_sqlx_migrations �m˝��o�6YiД
�m˝��o��M��f�
�m˝��o�V�Lr�6SQLite format 3 @ .zp
�
` ��
V�O�
�
�{�` �
E)�=indexidx_cmd_input_path_compositecmd_input_pathCREATE INDEX idx_cmd_input_path_composite ON cmd_input_path(cached_cmd_id, file_path_id)�K)�%indexidx_cmd_input_path_file_path_idcmd_input_path
CREATE INDEX idx_cmd_input_path_file_path_id ON cmd_input_path(file_path_id)� M)�)indexidx_cmd_input_path_cached_cmd_idcmd_input_pathCREATE INDEX idx_cmd_input_path_cached_cmd_id ON cmd_input_path(cached_cmd_id)�7 ))�)tablecmd_input_pathcmd_input_path
CREATE TABLE cmd_input_path
(
id INTEGER NOT NULL PRIMARY KEY,
cached_cmd_id INTEGER,
file_path_id INTEGER,
UNIQUE(cached_cmd_id, file_path_id),
FOREIGN KEY(cached_cmd_id)
REFERENCES cached_cmd(id)
ON UPDATE CASCADE
ON DELETE CASCADE,
FOREIGN KEY(file_path_id)
REFERENCES file_path(id)
ON UPDATE CASCADE
ON DELETE CASCADE
);
O) indexsqlite_autoindex_cmd_input_path_1cmd_input_pathO'gindexidx_file_pathfile_path CREATE INDEX idx_file_path ON file_path(path)�/�-tablefile_pathfile_pathCREATE TABLE file_path
(
id INTEGER NOT NULL PRIMARY KEY,
path BLOB NOT NULL UNIQUE,
is_directory BOOLEAN NOT NULL,
content_hash CHAR(64) NOT NULL,
modified_at INTEGER NOT NULL,
updated_at INTEGER NOT NULL DEFAULT (strftime('%s', 'now'))
)1E indexsqlite_autoindex_file_path_1file_patha3!}indexidx_cached_cmd_hashcached_cmdCREATE INDEX idx_cached_cmd_hash ON cached_cmd(cmd_hash)�<!!�Ctablecached_cmdcached_cmdCREATE TABLE cached_cmd
(
id INTEGER NOT NULL PRIMARY KEY,
raw TEXT NOT NULL,
cmd_hash CHAR(64) NOT NULL UNIQUE,
input_hash CHAR(64) NOT NULL,
output TEXT NOT NULL,
updated_at INTEGER NOT NULL DEFAULT (strftime('%s', 'now'))
)3G! indexsqlite_autoindex_cached_cmd_1cached_cmd�)--�table_sqlx_migrations_sqlx_migrationsCREATE TABLE _sqlx_migrations (
version BIGINT PRIMARY KEY,
description TEXT NOT NULL,
installed_on TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
success BOOLEAN NOT NULL,
checksum BLOB NOT NULL,
execution_time BIGINT NOT NULL
)?S- indexsqlite_autoindex__sqlx_migrations_1_sqlx_migrations �m˝��o*^ D��K
� � U3 lh��init2025-04-05 07:06:36ME�
�]˫[
��،�O{�Zq�L
�T�-�DH �L3R0$�P>� �m˝��oW����
� � h�� �m˝��o
|&�"�:
�m˝��o�r[�^�
�m˝��oށ�+�w�
�m˝��o�4�P�8�
�m˝��oFĮ��;��
�m˝��o�mh/�1
�m˝��o�&��Ӱ$
�m˝��o�/F&q?��
�m˝��o��(RUί�
�m˝��ot��^���
�m˝��o?��
�vH,
�m˝��ob{v� w
� � W3 lh��init2025-04-05 07:06:36ME�
�]˫[
��،�O{�Zq�L
�T�-�DH �L3R0$�P>{ �m˝��o0�od\�rSQLite format 3 @ .zp
` � ��
V� �+�
�{*��� �o�-tableenv_inputenv_inputCREATE TABLE env_input (
id INTEGER NOT NULL PRIMARY KEY,
cached_cmd_id INTEGER NOT NULL,
name TEXT NOT NULL,
content_hash CHAR(64) NOT NULL,
updated_at INTEGER NOT NULL DEFAULT (strftime ('%s', 'now')),
FOREIGN KEY (cached_cmd_id) REFERENCES cached_cmd (id) ON DELETE CASCADE,
UNIQUE (cached_cmd_id, name)
)�= ))�5tablecmd_input_pathcmd_input_path
CREATE TABLE cmd_input_path
(
id INTEGER NOT NULL PRIMARY KEY,
cached_cmd_id INTEGER,
file_input_id INTEGER,
UNIQUE(cached_cmd_id, file_input_id),
FOREIGN KEY(cached_cmd_id)
REFERENCES cached_cmd(id)
ON UPDATE CASCADE
ON DELETE CASCADE,
FOREIGN KEY(file_input_id)
REFERENCES "file_input"(id)
ON UPDATE CASCADE
ON DELETE CASCADE
)S'!mindexidx_file_pathfile_input CREATE INDEX idx_file_path ON "file_input"(path)3G! indexsqlite_autoindex_file_input_1file_input� ME)�=indexidx_cmd_input_path_compositecmd_input_pathCREATE INDEX idx_cm1E indexsqlite_autoindex_env_input_1env_input �
E)�?indexidx_cmd_input_path_compositecmd_input_pathCREATE INDEX idx_cmd_input_path_composite ON cmd_input_path(cached_cmd_id, file_input_id)� M)�)indexidx_cmd_input_path_cached_cmd_idcmd_input_pathCREATE INDEX idx_cmd_input_path_cached_cmd_id ON cmd_input_path(cached_cmd_id)
� �))�)tablecmd_input_pathcmd_input_path
CREATE TABLE cmd_input_path
(
id INTEGER NOT NULL PRIMARY KEY,
�4!!�3tablefile_inputfile_inputCREATE TABLE "file_input"
(
id INTEGER NOT NULL PRIMARY KEY,
path BLOB NOT NULL UNIQUE,
is_directory BOOLEAN NOT NULL,
content_hash CHAR(64) NOT NULL,
modified_at INTEGER NOT NULL,
updated_at INTEGER NOT NULL DEFAULT (strftime('%s', 'now'))
);
O) indexsqlite_autoindex_cmd_input_path_1cmd_input_path�,'gindexidx_file_pathfile_path CREATE INDEX idx_file_path ON file_path(path)�2�-tablefile_pathfile_pathCREATE TABLE file_path
(
id INTEGER NOT NULL PRIMARY KEY,
path BLOB NOT NULL UNIQUE,
is_directory BOOLEAN NOT NULL,
content_hash CHAR(64) NOT NULL,
modified_�K)�'indexidx_cmd_input_path_file_path_idcmd_input_path
CREATE INDEX idx_cmd_input_path_file_path_id ON cmd_input_path(file_input_id)a3!}indexidx_cached_cmd_hashcached_cmdCREATE INDEX idx_cached_cmd_hash ON cached_cmd(cmd_hash)�<!!�Ctablecached_cmdcached_cmdCREATE TABLE cached_cmd
(
id INTEGER NOT NULL PRIMARY KEY,
raw TEXT NOT NULL,
cmd_hash CHAR(64) NOT NULL UNIQUE,
input_hash CHAR(64) NOT NULL,
output TEXT NOT NULL,
updated_at INTEGER NOT NULL DEFAULT (strftime('%s', 'now'))
)3G! indexsqlite_autoindex_cached_cmd_1cached_cmd�)--�table_sqlx_migrations_sqlx_migrationsCREATE TABLE _sqlx_migrations (
version BIGINT PRIMARY KEY,
description TEXT NOT NULL,
installed_on TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
success BOOLEAN NOT NULL,
checksum BLOB NOT NULL,
execution_time BIGINT NOT NULL
)?S- indexsqlite_autoindex__sqlx_migrations_1_sqlx_migrations �m˝��o�����[
D �D a-3 lh�!��create-env-input2025-04-05 07:06:36��ڊ=���d��{�^W�G�)��l�H9��t����ܺ�$i����rNo��W3 lh��init2025-04-05 07:06:36ME�
�]˫[
��،�O{�Zq�L
�T�-�DH �L3R0$�P>{ �m˝��o-�<�J�
� ��
h�!�� h�� �m˝��o2>��#��U
�m˝��o_��
G��
�m˝��oc� �o�r�
B �B c-3 lh�!��create-env-input2025-04-05 07:06:36��ڊ=���d��{�^W�G�)��l�H9��t����ܺ�$i����rNo�K�W3 lh��init2025-04-05 07:06:36ME�
�]˫[
��،�O{�Zq�L
�T�-�DH �L3R0$�P>{