From 31e82d4b7e2f099f395e0d2c0ead403818236fe9 Mon Sep 17 00:00:00 2001 From: sergiotarxz Date: Fri, 19 Jul 2024 20:07:25 +0200 Subject: [PATCH] WhitelistConsole missing file. --- .../Schema/Result/WhitelistConsole.pm | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 lib/VPNManager/Schema/Result/WhitelistConsole.pm diff --git a/lib/VPNManager/Schema/Result/WhitelistConsole.pm b/lib/VPNManager/Schema/Result/WhitelistConsole.pm new file mode 100644 index 0000000..22418be --- /dev/null +++ b/lib/VPNManager/Schema/Result/WhitelistConsole.pm @@ -0,0 +1,25 @@ +package VPNManager::Schema::Result::WhitelistConsole; + +use v5.38.2; + +use strict; +use warnings; + +use feature 'signatures'; + +use parent 'DBIx::Class::Core'; + +__PACKAGE__->table('whitelist_console'); + +__PACKAGE__->add_columns( + id => { + data_type => 'INTEGER', + is_auto_increment => 1, + }, + username => { + data_type => 'TEXT', + is_nullable => 0, + }, +); +__PACKAGE__->set_primary_key('id'); +1;