Bläddra i källkod

Create Mount IDs as BigInt by default

Signed-off-by: Georg Ehrke <developer@georgehrke.com>
tags/v19.0.0beta2
Georg Ehrke 4 år sedan
förälder
incheckning
79dcd34a07
Inget konto är kopplat till bidragsgivarens mejladress

+ 0
- 1
apps/dav/lib/Migration/Version1004Date20170825134824.php Visa fil

@@ -445,7 +445,6 @@ class Version1004Date20170825134824 extends SimpleMigrationStep {
$table->addIndex(['objectid'], 'calendarobject_index');
$table->addIndex(['name'], 'calendarobject_name_index');
$table->addIndex(['value'], 'calendarobject_value_index');
$table->addIndex(['calendarid', 'calendartype'], 'calendarobject_calid_index');
}

if (!$schema->hasTable('dav_shares')) {

+ 1
- 0
apps/dav/lib/Migration/Version1006Date20180628111625.php Visa fil

@@ -92,6 +92,7 @@ class Version1006Date20180628111625 extends SimpleMigrationStep {
$calendarObjectsPropsTable->addIndex(['objectid', 'calendartype'], 'calendarobject_index');
$calendarObjectsPropsTable->addIndex(['name', 'calendartype'], 'calendarobject_name_index');
$calendarObjectsPropsTable->addIndex(['value', 'calendartype'], 'calendarobject_value_index');
$calendarObjectsPropsTable->addIndex(['calendarid', 'calendartype'], 'calendarobject_calid_index');
}

if ($schema->hasTable('calendarsubscriptions')) {

+ 6
- 3
core/Migrations/Version13000Date20170718121200.php Visa fil

@@ -94,11 +94,13 @@ class Version13000Date20170718121200 extends SimpleMigrationStep {
'notnull' => true,
'length' => 4,
]);
$table->addColumn('storage_id', 'integer', [
$table->addColumn('storage_id', Type::BIGINT, [
'notnull' => true,
'length' => 20,
]);
$table->addColumn('root_id', 'integer', [
$table->addColumn('root_id', Type::BIGINT, [
'notnull' => true,
'length' => 20,
]);
$table->addColumn('user_id', 'string', [
'notnull' => true,
@@ -108,8 +110,9 @@ class Version13000Date20170718121200 extends SimpleMigrationStep {
'notnull' => true,
'length' => 4000,
]);
$table->addColumn('mount_id', 'integer', [
$table->addColumn('mount_id', Type::BIGINT, [
'notnull' => false,
'length' => 20,
]);
$table->setPrimaryKey(['id']);
$table->addIndex(['user_id'], 'mounts_user_index');

Laddar…
Avbryt
Spara