summaryrefslogtreecommitdiff
path: root/modules/system/system.install
diff options
context:
space:
mode:
Diffstat (limited to 'modules/system/system.install')
-rw-r--r--modules/system/system.install14
1 files changed, 4 insertions, 10 deletions
diff --git a/modules/system/system.install b/modules/system/system.install
index aa42738c8..47b04d1f2 100644
--- a/modules/system/system.install
+++ b/modules/system/system.install
@@ -1346,17 +1346,11 @@ function system_schema() {
'length' => 255,
'not null' => TRUE,
),
- 'filectime' => array(
- 'description' => "The creation time of the file when last parsed.",
- 'type' => 'int',
- 'not null' => TRUE,
- 'default' => 0,
- ),
- 'filemtime' => array(
- 'description' => "The modification time of the file when last parsed.",
- 'type' => 'int',
+ 'hash' => array(
+ 'description' => "sha-256 hash of the file's contents when last parsed.",
+ 'type' => 'varchar',
+ 'length' => 64,
'not null' => TRUE,
- 'default' => 0,
),
),
'primary key' => array('filename'),