Upgrading from 1.1.x would make uri fields have length=255
This commit is contained in:
parent
349e842078
commit
f32414dd93
|
@ -195,6 +195,7 @@ class Deleted_notice extends Managed_DataObject
|
||||||
echo "\nFound old $table table, upgrading it to add 'act_created' field...";
|
echo "\nFound old $table table, upgrading it to add 'act_created' field...";
|
||||||
|
|
||||||
$schemadef['fields']['act_created'] = array('type' => 'datetime', 'not null' => true, 'description' => 'datetime the notice record was created');
|
$schemadef['fields']['act_created'] = array('type' => 'datetime', 'not null' => true, 'description' => 'datetime the notice record was created');
|
||||||
|
$schemadef['fields']['uri']['length'] = 191; // we likely don't have to discover too long keys here
|
||||||
$schema->ensureTable($table, $schemadef);
|
$schema->ensureTable($table, $schemadef);
|
||||||
|
|
||||||
$deleted = new Deleted_notice();
|
$deleted = new Deleted_notice();
|
||||||
|
|
|
@ -107,6 +107,7 @@ class RSVP extends Managed_DataObject
|
||||||
echo "\nFound old $table table, upgrading it to add 'event_uri' field...";
|
echo "\nFound old $table table, upgrading it to add 'event_uri' field...";
|
||||||
|
|
||||||
$schemadef['fields']['event_uri'] = array('type' => 'varchar', 'length' => 191, 'not null' => true, 'description' => 'Event URI');
|
$schemadef['fields']['event_uri'] = array('type' => 'varchar', 'length' => 191, 'not null' => true, 'description' => 'Event URI');
|
||||||
|
$schemadef['fields']['uri']['length'] = 191; // we likely don't have to discover too long keys here
|
||||||
$schema->ensureTable($table, $schemadef);
|
$schema->ensureTable($table, $schemadef);
|
||||||
|
|
||||||
$rsvp = new RSVP();
|
$rsvp = new RSVP();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user