Skip to content

Commit

Permalink
Update schema file
Browse files Browse the repository at this point in the history
  • Loading branch information
kylemhall committed Jul 17, 2023
1 parent 27830f8 commit 977540f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion installer/data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -216,4 +216,4 @@ UNLOCK TABLES;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2023-07-11 7:45:28
-- Dump completed on 2023-07-17 7:52:06
5 changes: 4 additions & 1 deletion installer/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ CREATE TABLE `clients` (
`location` varchar(191) COLLATE utf8_unicode_ci DEFAULT NULL,
`status` varchar(191) COLLATE utf8_unicode_ci DEFAULT 'online',
`type` varchar(191) COLLATE utf8_unicode_ci DEFAULT NULL,
`ipaddress` varchar(191) COLLATE utf8_unicode_ci DEFAULT NULL,
`macaddress` varchar(191) COLLATE utf8_unicode_ci DEFAULT NULL,
`hostname` varchar(191) COLLATE utf8_unicode_ci DEFAULT NULL,
`last_registered` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`instance`,`name`),
Expand Down Expand Up @@ -401,4 +404,4 @@ CREATE TABLE `users` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2023-07-11 7:45:27
-- Dump completed on 2023-07-17 7:52:06
4 changes: 2 additions & 2 deletions lib/Libki/Schema/DB/Result/Client.pm
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,8 @@ __PACKAGE__->might_have(
);


# Created by DBIx::Class::Schema::Loader v0.07051 @ 2023-06-27 14:05:43
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ezahs6nNd/0otskinplv7g
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2023-07-17 07:52:04
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ti/ZkUiszWr7QBlvpKEe6Q

=head2 can_user_use
Expand Down

0 comments on commit 977540f

Please sign in to comment.