소스 검색

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"),


불러오는 중...
취소
저장