Add SSL section.

master
Kaitlyn Parkhurst 3 years ago
parent f1780793e4
commit ee4ce53a70
  1. 1
      DB/etc/schema.sql
  2. 11
      DB/lib/MJB/DB/Result/Domain.pm

@ -41,6 +41,7 @@ CREATE TABLE domain (
id serial PRIMARY KEY,
person_id int not null references person(id),
name citext not null unique,
ssl text default null,
created_at timestamptz not null default current_timestamp
);

@ -55,6 +55,11 @@ __PACKAGE__->table("domain");
data_type: 'citext'
is_nullable: 0
=head2 ssl
data_type: 'text'
is_nullable: 1
=head2 created_at
data_type: 'timestamp with time zone'
@ -75,6 +80,8 @@ __PACKAGE__->add_columns(
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
"name",
{ data_type => "citext", is_nullable => 0 },
"ssl",
{ data_type => "text", is_nullable => 1 },
"created_at",
{
data_type => "timestamp with time zone",
@ -142,8 +149,8 @@ __PACKAGE__->belongs_to(
);
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-09-07 05:14:59
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:J/Y4weagD34GOj8npijaUg
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-11-06 19:24:12
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:agNtunaurulCvfqzy39meg
# You can replace this text with custom code or comments, and it will be preserved on regeneration

Loading…
Cancel
Save