Help for this page

Select Code to Download


  1. or download this
    __PACKAGE__->add_columns(
      "album_id",
      { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }
    +,
    ...
      "source",
      { data_type => "text", is_nullable => 1 },
    );
    
  2. or download this
    __PACKAGE__->belongs_to(
      "artist",
      "music_library::Schema::Result::Artist",
    ...
        on_update     => "NO ACTION",
      },
    );