]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
change some more tables to InnoDB
authorEvan Prodromou <evan@prodromou.name>
Tue, 16 Sep 2008 17:45:15 +0000 (13:45 -0400)
committerEvan Prodromou <evan@prodromou.name>
Tue, 16 Sep 2008 17:45:15 +0000 (13:45 -0400)
darcs-hash:20080916174515-84dde-f0adac3444809b2f3bfc145eaf8e6f394124e9cc.gz

db/laconica.sql

index 867deb79700865afa8e572f345a83c41f0482eb2..a643fd2312aa8311a8651412125c697483863763 100644 (file)
@@ -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;