major features update
This commit is contained in:
parent
519fb49901
commit
4e2fab67c5
48 changed files with 3925 additions and 208 deletions
33
migrations/demo.db/0003_demo-data.sql
Normal file
33
migrations/demo.db/0003_demo-data.sql
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
INSERT INTO contacts(id, birthday, manually_freshened_at)
|
||||
values (0, '--0415', '2000-01-01T12:00:00');
|
||||
INSERT INTO names(contact_id, sort, name)
|
||||
values (0, 0, 'Alex Aaronson');
|
||||
INSERT INTO names(contact_id, sort, name)
|
||||
values (0, 1, 'Alexi');
|
||||
INSERT INTO names(contact_id, sort, name)
|
||||
values (0, 2, 'Алексей');
|
||||
INSERT INTO contacts(id, birthday)
|
||||
values (1, 'April?');
|
||||
INSERT INTO names(contact_id, sort, name)
|
||||
values (1, 0, 'Bazel Bagend');
|
||||
INSERT INTO contacts(id, birthday)
|
||||
values (2, '19951018');
|
||||
INSERT INTO names(contact_id, sort, name)
|
||||
values (2, 0, 'Charlie Certaindate');
|
||||
|
||||
insert into journal_entries(id, date, value)
|
||||
values (0, '2020-02-27', 'Lunch with [[Bazel Bagend]] and his wife');
|
||||
insert into journal_entries(id, value, date)
|
||||
values (1, 'Dinner with [[Alexi]]', '2025-10-10');
|
||||
insert into journal_entries(id, date, value)
|
||||
values (2, '2022-06-06', 'Movies with [[Daniel Doesn''texist]] et al');
|
||||
|
||||
insert into contact_mentions(
|
||||
entry_id, contact_id, input_text,
|
||||
byte_range_start, byte_range_end
|
||||
) values (0, 1, 'Bazel Bagend', 11, 27);
|
||||
|
||||
insert into contact_mentions(
|
||||
entry_id, contact_id, input_text,
|
||||
byte_range_start, byte_range_end
|
||||
) values (1, 0, 'Alexi', 12, 21);
|
||||
Loading…
Add table
Add a link
Reference in a new issue