Remove Administrator column
This commit is contained in:
parent
88b98d9561
commit
36e91866c9
1 changed files with 0 additions and 28 deletions
|
@ -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;
|
Reference in a new issue