X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=db%2Fsite.sql;h=5e9693f5f71ac5b7d0fa4dad3dd9db1905c707fe;hb=45dfa9f2151eaaafae0b9d6a949b50f64f15f55c;hp=c630a83d522cfdbf7c35f72adfb572d65b5b5bbb;hpb=0dbdcf2936a00282114f1368ead2f5edebc6ae61;p=quix0rs-gnu-social.git diff --git a/db/site.sql b/db/site.sql index c630a83d52..5e9693f5f7 100644 --- a/db/site.sql +++ b/db/site.sql @@ -21,7 +21,7 @@ create table status_network ( created datetime not null comment 'date this record was created', modified timestamp comment 'date this record was modified' -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_general_ci; +) ENGINE=InnoDB CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci; create table status_network_tag ( site_id integer comment 'unique id', @@ -30,5 +30,5 @@ create table status_network_tag ( constraint primary key (site_id, tag), index status_network_tag_tag_idx (tag) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_general_ci; +) ENGINE=InnoDB CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;