]> iEval git - gruntmaster-data.git/blobdiff - lib/Gruntmaster/Data/Result/Contest.pm
Add editorial and description columns
[gruntmaster-data.git] / lib / Gruntmaster / Data / Result / Contest.pm
index 2a57c95f4a4247d5e145db5e7f135e693a60ab26..1da4badddb7cf880ddad4310f08eefd7c17c0ef1 100644 (file)
@@ -33,6 +33,20 @@ __PACKAGE__->table("contests");
   data_type: 'text'
   is_nullable: 0
 
+=head2 editorial
+
+  data_type: 'text'
+  is_nullable: 1
+
+HTML fragment placed before the editorial
+
+=head2 description
+
+  data_type: 'text'
+  is_nullable: 1
+
+HTML fragment placed on contest page
+
 =head2 start
 
   data_type: 'integer'
@@ -60,6 +74,10 @@ __PACKAGE__->add_columns(
   { data_type => "text", is_nullable => 0 },
   "name",
   { data_type => "text", is_nullable => 0 },
+  "editorial",
+  { data_type => "text", is_nullable => 1 },
+  "description",
+  { data_type => "text", is_nullable => 1 },
   "start",
   { data_type => "integer", is_nullable => 0 },
   "stop",
@@ -168,8 +186,8 @@ Composing rels: L</contest_problems> -> problem
 __PACKAGE__->many_to_many("problems", "contest_problems", "problem");
 
 
-# Created by DBIx::Class::Schema::Loader v0.07042 @ 2014-12-19 16:54:00
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:IxxZqQwKisBwDabCNUD55Q
+# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-02-14 10:52:58
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:UTfqBbyhmo0r1HyWtGXidA
 
 use Class::Method::Modifiers qw/after/;
 use List::Util qw/sum/;
This page took 0.01638 seconds and 4 git commands to generate.