What steps will reproduce the problem? $t = $this->create_table('tokens', array('id' => false)); $t->column('token', 'string', array('limit' => 36, 'primary_key' => true)); // UUID $t->finish();
What is the expected output?
CREATE TABLE tokens
(
token
varchar(36) NOT NULL DEFAULT '',
PRIMARY KEY (token
),
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
What do you see instead?
CREATE TABLE tokens
(
token
varchar(36) DEFAULT NULL,
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
What version of the product are you using? On what operating system? Ruckusing 3.3
Comment #1
Posted on Oct 30, 2010 by Swift Giraffe(No comment was entered for this change.)
Comment #2
Posted on Nov 3, 2010 by Swift GiraffeI am moving the project to GitHub and I've also fixed this issue. Hang tight for more details.
Comment #3
Posted on Nov 3, 2010 by Swift GiraffeThis too has been implemented over on GitHub. Give it a try?
Status: Started
Labels:
Type-Defect
Priority-Medium