diff options
Diffstat (limited to 'upgrades/dbpatches/1.3/postgresql/patch/sessions.sql')
-rw-r--r-- | upgrades/dbpatches/1.3/postgresql/patch/sessions.sql | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/upgrades/dbpatches/1.3/postgresql/patch/sessions.sql b/upgrades/dbpatches/1.3/postgresql/patch/sessions.sql deleted file mode 100644 index d9d3d45d..00000000 --- a/upgrades/dbpatches/1.3/postgresql/patch/sessions.sql +++ /dev/null @@ -1,10 +0,0 @@ -CREATE TABLE sessions_tmp ( - sessionid varchar(32) DEFAULT '' NOT NULL, - userid bigint DEFAULT '0' NOT NULL, - lastaccess integer DEFAULT '0' NOT NULL, - PRIMARY KEY (sessionid) -); - -insert into sessions_tmp select * from sessions; -drop table sessions; -alter table sessions_tmp rename to sessions; |