patch-interwiki.sql
来自「php 开发的内容管理系统」· SQL 代码 · 共 21 行
SQL
21 行
-- Creates interwiki prefix<->url mapping table-- used from 2003-08-21 dev version.-- Import the default mappings from maintenance/interwiki.sqlCREATE TABLE /*$wgDBprefix*/interwiki ( -- The interwiki prefix, (e.g. "Meatball", or the language prefix "de") iw_prefix char(32) NOT NULL, -- The URL of the wiki, with "$1" as a placeholder for an article name. -- Any spaces in the name will be transformed to underscores before -- insertion. iw_url char(127) NOT NULL, -- A boolean value indicating whether the wiki is in this project -- (used, for example, to detect redirect loops) iw_local BOOL NOT NULL, UNIQUE KEY iw_prefix (iw_prefix)) TYPE=InnoDB;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?