comparison core/lib/Drupal/Core/Lock/DatabaseLockBackend.php @ 17:129ea1e6d783

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:21:36 +0000
parents 4c8ae668cc8c
children
comparison
equal deleted inserted replaced
16:c2387f117808 17:129ea1e6d783
249 'name' => [ 249 'name' => [
250 'description' => 'Primary Key: Unique name.', 250 'description' => 'Primary Key: Unique name.',
251 'type' => 'varchar_ascii', 251 'type' => 'varchar_ascii',
252 'length' => 255, 252 'length' => 255,
253 'not null' => TRUE, 253 'not null' => TRUE,
254 'default' => '' 254 'default' => '',
255 ], 255 ],
256 'value' => [ 256 'value' => [
257 'description' => 'A value for the semaphore.', 257 'description' => 'A value for the semaphore.',
258 'type' => 'varchar_ascii', 258 'type' => 'varchar_ascii',
259 'length' => 255, 259 'length' => 255,
260 'not null' => TRUE, 260 'not null' => TRUE,
261 'default' => '' 261 'default' => '',
262 ], 262 ],
263 'expire' => [ 263 'expire' => [
264 'description' => 'A Unix timestamp with microseconds indicating when the semaphore should expire.', 264 'description' => 'A Unix timestamp with microseconds indicating when the semaphore should expire.',
265 'type' => 'float', 265 'type' => 'float',
266 'size' => 'big', 266 'size' => 'big',
267 'not null' => TRUE 267 'not null' => TRUE,
268 ], 268 ],
269 ], 269 ],
270 'indexes' => [ 270 'indexes' => [
271 'value' => ['value'], 271 'value' => ['value'],
272 'expire' => ['expire'], 272 'expire' => ['expire'],