Skip to content

Commit 0c98d2a

Browse files
author
Hatim EL OUFIR
committed
Update demo data: include companies
1 parent 556a76f commit 0c98d2a

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

database/help_desk.pgsql.sql

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,6 @@ VALUES (1, 'Improvement', '#dbeafe', '#3b82f6', 'fa-arrow-up', NULL, '2022-09-19
8181
(5, 'Bug', '#ef4444', '#fee2e2', 'fa-bug', NULL, '2022-09-19 10:37:37', '2022-09-19 11:31:04', 'bug');
8282

8383

84-
84+
INSERT INTO companies (id, name, logo, description, is_disabled, responsible_id, deleted_at, created_at, updated_at) VALUES
85+
(1, 'Google', 'AdMZvIIRz0ZAggtLBzo7GKOTdrSTIq-metaZ29vZ2xlbG9nb19jb2xvcl8yNzJ4OTJkcC5wbmc=-.png', '<p>Google is an American technology services company founded in 1998 in Silicon Valley, California, by Larry Page and Sergey Brin, creators of the Google search engine. It has been a subsidiary of the Alphabet company since August 2015.</p>', false, 4, NULL, '2022-09-24 23:31:50', '2022-09-24 23:44:50'),
86+
(2, 'Meta', 'sVFt9gfVmnab5BSYsQZ39EVrfcvqGt-metaTWV0YV9QbGF0Zm9ybXNfSW5jLl9sb2dvLnN2Zy5wbmc=-.png', '<p>Meta Platforms, Inc., better known by the trade name Meta, is an American company created in 2004 by Mark Zuckerberg. It is one of the giants of the Web, grouped under the acronym GAFAM, alongside Google, Apple, Amazon and Microsoft.</p>', true, 5, NULL, '2022-09-24 23:46:26', '2022-09-24 23:46:47');

database/help_desk.sql

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,8 @@ VALUES (1, 'Improvement', '#dbeafe', '#3b82f6', 'fa-arrow-up', NULL, '2022-09-19
8282
'task'),
8383
(5, 'Bug', '#ef4444', '#fee2e2', 'fa-bug', NULL, '2022-09-19 10:37:37', '2022-09-19 11:31:04', 'bug');
8484

85+
INSERT INTO `companies` (`id`, `name`, `logo`, `description`, `is_disabled`, `responsible_id`, `deleted_at`, `created_at`, `updated_at`) VALUES
86+
(1, 'Google', 'AdMZvIIRz0ZAggtLBzo7GKOTdrSTIq-metaZ29vZ2xlbG9nb19jb2xvcl8yNzJ4OTJkcC5wbmc=-.png', '<p>Google is an American technology services company founded in 1998 in Silicon Valley, California, by Larry Page and Sergey Brin, creators of the Google search engine. It has been a subsidiary of the Alphabet company since August 2015.</p>', 0, 4, NULL, '2022-09-24 23:31:50', '2022-09-24 23:44:50'),
87+
(2, 'Meta', 'sVFt9gfVmnab5BSYsQZ39EVrfcvqGt-metaTWV0YV9QbGF0Zm9ybXNfSW5jLl9sb2dvLnN2Zy5wbmc=-.png', '<p>Meta Platforms, Inc., better known by the trade name Meta, is an American company created in 2004 by Mark Zuckerberg. It is one of the giants of the Web, grouped under the acronym GAFAM, alongside Google, Apple, Amazon and Microsoft.</p>', 1, 5, NULL, '2022-09-24 23:46:26', '2022-09-24 23:46:47');
88+
8589
SET foreign_key_checks = 1;

0 commit comments

Comments
 (0)