The installation creates the signup_status_node_limits table but fails creating the signup_status_codes table.

Comments

brembold’s picture

mysql> CREATE TABLE signup_status_codes (
-> cid int unsigned NOT NULL auto_increment,
-> name varchar(128) NOT NULL default '',
-> description text NOT NULL,
-> mod_signup_count int NOT NULL default 0,
-> auto_transition int NOT NULL default 0,
-> show_on_form int NOT NULL default 0,
-> PRIMARY KEY (cid),
-> UNIQUE KEY name (name)
-> );

I modified the create table script and go it to work with the above code.

jrbeeman’s picture

Status: Active » Fixed

This should be fixed as of r107567

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.