This website works better with JavaScript.
Home
Explore
Help
Sign In
brennen
/
app-markfiles
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
1
Activity
Browse Source
add some sql
master
Brennen Bearnes
2 years ago
parent
0d52897211
commit
df7f928f24
1 changed files
with
13 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+13
-0
lib/App/MarkFiles.pm
+ 13
- 0
lib/App/MarkFiles.pm
View File
@ -111,6 +111,19 @@ sub create_mark_db {
path
text
,
datetime
text
)
;
CREATE
TABLE
things
(
id
integer
primary
key
,
address
text
)
;
CREATE
TABLE
links
(
id
integer
primary
key
,
from_thing
integer
,
to_thing
integer
,
created
text
,
updated
text
)
;
SQL
)
;
}
Write
Preview
Loading…
Cancel
Save