Remove Administrator column

This commit is contained in:
Tom Bloor 2017-08-31 11:26:30 +01:00
parent 88b98d9561
commit 36e91866c9

View file

@ -1,28 +0,0 @@
package Pear::LocalLoop::Schema::Result::Administrator;
use strict;
use warnings;
use base 'DBIx::Class::Core';
__PACKAGE__->table("administrators");
__PACKAGE__->add_columns(
"user_id",
{
data_type => "integer",
is_foreign_key => 1,
is_nullable => 0,
},
);
__PACKAGE__->set_primary_key("user_id");
__PACKAGE__->belongs_to(
"user",
"Pear::LocalLoop::Schema::Result::User",
{ id => "user_id" },
{ is_deferrable => 0, on_delete => "NO ACTION", on_update => "NO ACTION" },
);
1;