diff -r e3912669678c -r 6a33901e2721 lib/CrashTest/Storage/Sql/Schema/Result/CrashData.pm --- a/lib/CrashTest/Storage/Sql/Schema/Result/CrashData.pm Thu Sep 24 01:49:55 2015 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,30 +0,0 @@ -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -package CrashTest::Storage::Sql::Schema::Result::CrashData; - -use CrashTest::Storage::Sql::Schema::Candy; - -primary_column id => { - data_type => 'int', - is_auto_increment => 1, -}; - -column processed => { - data_type => 'jsonb', -}; - -column crash_report_id => { data_type => 'int' }; -belongs_to crash_report => 'CrashTest::Storage::Sql::Schema::Result::CrashReport', 'crash_report_id'; - -1;