Subject: | Stray comma |
Rev 15:
Need to remove the trailing comma from line 76 as a result of removing
the id field from the role table
my @sql = ("CREATE TABLE role (
role TEXT primary key,
);
Becomes
my @sql = ("CREATE TABLE role (
role TEXT primary key
);"