From e36deec6b7d2ffcd8fe699d708c775f03a884e0e Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 16 Sep 2008 13:45:15 -0400 Subject: [PATCH] change some more tables to InnoDB darcs-hash:20080916174515-84dde-f0adac3444809b2f3bfc145eaf8e6f394124e9cc.gz --- db/laconica.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db/laconica.sql b/db/laconica.sql index 867deb7970..a643fd2312 100644 --- a/db/laconica.sql +++ b/db/laconica.sql @@ -273,7 +273,7 @@ create table foreign_user ( modified timestamp comment 'date this record was modified', constraint primary key (id, service) -) ENGINE=MyISAM CHARACTER SET utf8 COLLATE utf8_bin; +) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; create table foreign_link ( user_id int comment 'link to user on this system, if exists' references user (id), @@ -310,4 +310,4 @@ create table invitation ( index invitation_address_idx (address, address_type), index invitation_user_id_idx (user_id) -) ENGINE=MyISAM CHARACTER SET utf8 COLLATE utf8_bin; +) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;