rsstootalizer/RSSTootalizer/Migration.pm

18 lines
307 B
Perl
Raw Normal View History

2017-04-23 18:49:07 +00:00
# vim: set foldmarker={,}:
use strict;
2017-04-23 18:51:48 +00:00
use RSSTootalizer::Base;
2017-04-23 18:49:07 +00:00
2017-04-23 18:51:48 +00:00
package RSSTootalizer::Migration;
@RSSTootalizer::Migration::ISA = qw(RSSTootalizer::Base);
2017-04-23 18:49:07 +00:00
use JSON;
use Data::Dumper;
2017-04-23 19:22:46 +00:00
sub dbTable :lvalue { "migrations"; }
sub orderBy :lvalue { "created_at ASC"; }
2017-04-23 18:49:07 +00:00
# Class functions
# Object methods
1;