Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Paste
P361
(An Untitled Masterwork)
Active
Public
Actions
Authored by
seirl
on Feb 19 2019, 11:48 AM.
Edit Paste
Archive Paste
View Raw File
Subscribe
Mute Notifications
Award Token
Flag For Later
Tags
None
Subscribers
None
Old :
CREATE TABLE public.directory (
id public.sha1_git NOT NULL,
dir_entries bigint[],
file_entries bigint[],
rev_entries bigint[],
object_id bigint NOT NULL
);
CREATE TABLE public.directory_entry_dir (
id bigint NOT NULL,
target public.sha1_git,
name public.unix_path,
perms public.file_perms
);
New :
CREATE TABLE public.directory (
id public.sha1_git NOT NULL,
object_id bigint NOT NULL
);
CREATE TABLE public.directory_entry_dir (
dir_id bigint NOT NULL REFERENCES directory.object_id,
target public.sha1_git,
name public.unix_path,
perms public.file_perms
);
Event Timeline
seirl
created this paste.
Feb 19 2019, 11:48 AM
2019-02-19 11:48:13 (UTC+1)
Log In to Comment