diff --git a/src/main/resources/sql/fixtures/04-article.sql b/src/main/resources/sql/fixtures/04-article.sql index ea409aa..b26b552 100644 --- a/src/main/resources/sql/fixtures/04-article.sql +++ b/src/main/resources/sql/fixtures/04-article.sql @@ -12,7 +12,7 @@ begin delete from article_relations; delete from article; - insert into article (id, version_id, created_by_id, title, anonymous, content, description, tags) + insert into article (id, version_id, created_by_id, title, anonymous, content, description, tags, created_at) select uuid_in(md5('article'||row_number() over ())::cstring), uuid_in(md5('article_v'||row_number() over ())::cstring), @@ -21,7 +21,8 @@ begin row_number() over () % 3 = 0, 'content' || row_number() over (), 'description' || row_number() over (), - _tags[(row_number() over () % 5):(row_number() over () % 9)] + _tags[(row_number() over () % 5):(row_number() over () % 9)], + now() + (row_number() over () * interval '7 minute 3 second') from citizen z; insert into article_relations (source_id, target_id, created_by_id, comment) @@ -36,4 +37,3 @@ begin raise notice 'article fixtures done'; end; $$; - diff --git a/src/main/resources/sql/fixtures/05-constitution.sql b/src/main/resources/sql/fixtures/05-constitution.sql index 64ab046..2437643 100644 --- a/src/main/resources/sql/fixtures/05-constitution.sql +++ b/src/main/resources/sql/fixtures/05-constitution.sql @@ -7,13 +7,14 @@ begin delete from title; delete from constitution; - insert into constitution (id, version_id, created_by_id, title, anonymous) + insert into constitution (id, version_id, created_by_id, title, anonymous, created_at) select uuid_in(md5('constitution'||row_number() over ())::cstring), uuid_in(md5('constitution_v'||row_number() over ())::cstring), z.id, 'title' || row_number() over (), - row_number() over () % 3 = 0 + row_number() over () % 3 = 0, + now() + (row_number() over () * interval '7 minute 3 second') from citizen z; insert into title (id, created_by_id, name, rank, constitution_id)