Skip to content

Commit

Permalink
Merge pull request #27 from devaslanphp/dev
Browse files Browse the repository at this point in the history
Update demo data and docs
  • Loading branch information
heloufir committed Sep 19, 2022
2 parents 292e709 + 94a7fe8 commit e95a852
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion database/help_desk.sql
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ VALUES (1, 'Lowest', '#dcfce7', '#22c55e', 'fa-arrow-down', NULL, '2022-09-19 10
INSERT INTO `ticket_statuses` (`id`, `title`, `text_color`, `bg_color`, `default`, `deleted_at`, `created_at`,
`updated_at`, `slug`)
VALUES (1, 'Created', '#6b7280', '#f3f4f6', 1, NULL, '2022-09-19 09:17:50', '2022-09-19 11:30:48', 'created'),
(2, 'In progress', '#0ea5e9', '#e0f2fe', 0, NULL, '2022-09-19 09:19:17', '2022-09-19 11:30:48', 'in-progress'),
(2, 'In progress', '#0ea5e9', '#e0f2fe', 0, NULL, '2022-09-19 09:19:17', '2022-09-19 11:30:48', 'in_progress'),
(3, 'Done', '#f97316', '#ffedd5', 0, NULL, '2022-09-19 09:21:17', '2022-09-19 11:30:48', 'done'),
(4, 'Validated', '#22c55e', '#dcfce7', 0, NULL, '2022-09-19 09:21:29', '2022-09-19 11:30:48', 'validated'),
(5, 'Rejected', '#ef4444', '#fee2e2', 0, NULL, '2022-09-19 09:21:41', '2022-09-19 11:30:48', 'rejected');
Expand Down
1 change: 1 addition & 0 deletions public/docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ <h2>Installation</h2>
</li>
<li>Install docker container <code>./vendor/sail/bin up -d</code></li>
<li>Database migration: using the docker terminal for <strong>laravel.test-1 container run this command </strong> <code>php artisan migrate</code></li>
<li>Database seed: using the docker terminal for <strong>laravel.test-1 container run this command </strong> <code>php artisan db:seed</code></li>
<li>
<strong>Optional</strong> if you wan't some demo data:
<ul>
Expand Down

0 comments on commit e95a852

Please sign in to comment.