瀏覽代碼

MySQL, how could you do something like that?

tags/v1.0^2
Ben Kurtovic 10 年之前
父節點
當前提交
fd556d9e9e
共有 2 個檔案被更改,包括 10 行新增3 行删除
  1. +3
    -2
      bitshift/database/migration.py
  2. +7
    -1
      bitshift/database/schema.sql

+ 3
- 2
bitshift/database/migration.py 查看文件

@@ -130,8 +130,9 @@ MIGRATIONS = [
],
# 11 -> 12
[
"""CREATE TABLE `stopwords`
LIKE information_schema.innodb_ft_default_stopword""",
"""CREATE TABLE `stopwords` (
`value` varchar(18) NOT NULL DEFAULT ""
) ENGINE=InnoDB DEFAULT CHARSET=utf8""",
"""INSERT INTO `stopwords` VALUES
("a"), ("about"), ("an"), ("are"), ("as"), ("at"), ("be"), ("by"),
("how"), ("i"), ("it"), ("la"), ("of"), ("on"), ("that"), ("the"),


+ 7
- 1
bitshift/database/schema.sql 查看文件

@@ -10,7 +10,13 @@ CREATE TABLE `version` (
) ENGINE=InnoDB;
INSERT INTO `version` VALUES (12);

CREATE TABLE `stopwords` LIKE information_schema.innodb_ft_default_stopword;
CREATE TABLE `stopwords`
LIKE information_schema.innodb_ft_default_stopword
ENGINE=InnoDB;

CREATE TABLE `stopwords` (
`value` varchar(18) NOT NULL DEFAULT ""
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO `stopwords` VALUES
("a"), ("about"), ("an"), ("are"), ("as"), ("at"), ("be"), ("by"), ("how"),
("i"), ("it"), ("la"), ("of"), ("on"), ("that"), ("the"), ("to"), ("und"),


Loading…
取消
儲存