Add new column with a default to Artist, adjust tests as necessary (no functional...
[dbsrgits/DBIx-Class.git] / t / bindtype_columns.t
index 8edf7af..7cc712c 100644 (file)
@@ -24,7 +24,8 @@ my $dbh = $schema->storage->dbh;
         (
             artistid        serial  NOT NULL    PRIMARY KEY,
             media           bytea   NOT NULL,
-            name            varchar NULL
+            name            varchar NULL,
+            rank            integer NOT NULL    DEFAULT '13'
         );
     ],{ RaiseError => 1, PrintError => 1 });
 }