Add passphrase and admin fields to users table
[gruntmaster-data.git] / lib / Gruntmaster / Data / Result / User.pm
index 21edb48714f09823c83a9affabba870469af136c..1ae671027828ea872bf8174b25bd9e1164e86922 100644 (file)
@@ -28,6 +28,17 @@ __PACKAGE__->table("users");
   data_type: 'text'
   is_nullable: 0
 
+=head2 passphrase
+
+  data_type: 'text'
+  is_nullable: 0
+
+=head2 admin
+
+  data_type: 'boolean'
+  default_value: false
+  is_nullable: 0
+
 =head2 name
 
   data_type: 'text'
@@ -68,6 +79,10 @@ __PACKAGE__->table("users");
 __PACKAGE__->add_columns(
   "id",
   { data_type => "text", is_nullable => 0 },
+  "passphrase",
+  { data_type => "text", is_nullable => 0 },
+  "admin",
+  { data_type => "boolean", default_value => \"false", is_nullable => 0 },
   "name",
   { data_type => "text", is_nullable => 1 },
   "email",
@@ -159,8 +174,8 @@ __PACKAGE__->has_many(
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-03-26 15:24:46
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:HjxrnH2QdWGaAnArZpyYMA
+# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-04-18 20:16:26
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:r7hVLUd+6MeYZn+8I4S7Cw
 
 
 # You can replace this text with custom code or comments, and it will be preserved on regeneration
This page took 0.009817 seconds and 4 git commands to generate.