diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-06-19 10:39:36 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-06-19 10:39:36 +0000 |
commit | cbc230a36c16fc246064e9e8c2766cae951ef99c (patch) | |
tree | f2f885568eaff4d3968bc48540ef2af73218f5f6 /database/database.pgsql | |
parent | c51805aa8a1444db173c63881e2e7147d7d4839b (diff) | |
download | brdo-cbc230a36c16fc246064e9e8c2766cae951ef99c.tar.gz brdo-cbc230a36c16fc246064e9e8c2766cae951ef99c.tar.bz2 |
- Patch #7696 by TDobes: renamed 'static' to 'sticky' which is a more
logical name. Requires a database upgrade.
Diffstat (limited to 'database/database.pgsql')
-rw-r--r-- | database/database.pgsql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/database/database.pgsql b/database/database.pgsql index b91616ea6..bb4ae1e3d 100644 --- a/database/database.pgsql +++ b/database/database.pgsql @@ -327,7 +327,7 @@ CREATE TABLE node ( body text NOT NULL default '', changed integer NOT NULL default '0', revisions text NOT NULL default '', - static integer NOT NULL default '0', + sticky integer NOT NULL default '0', PRIMARY KEY (nid) ); CREATE INDEX node_type_idx ON node(type); |