Skip to:
When comparing a fresh auto-ddl'd 2.8 rc01 database against an upgraded 2.7.1 database, the following inconsistency was found:
– POLL_POLL.POLL_IS_PUBLIC2.8 auto.ddl: nullable, default NULL2.7.1 converted: not nullable, default "0"
The relevant line in the conversion script is:
alter table POLL_POLL add POLL_IS_PUBLIC Number(1,0) default 0 not null;
reviewed the conversion script. Close the ticket.
Opened a new one - POLL-146, to address the MySQL side of problem.
was introduced by changes
Integrated in sakai trunk #462 (See http://builds.sakaiproject.org:8080/job/sakai%20trunk/462/) resolve column-type and default-value inconsistency in conversion script
In 2.8.x, r89746
Change now in trunk, r89744.
When comparing a fresh auto-ddl'd 2.8 rc01 database against an upgraded 2.7.1 database, the following inconsistency was found:
– POLL_POLL.POLL_IS_PUBLIC
2.8 auto.ddl: nullable, default NULL
2.7.1 converted: not nullable, default "0"
The relevant line in the conversion script is:
alter table POLL_POLL add POLL_IS_PUBLIC Number(1,0) default 0 not null;