⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 patch-rev_text_id.sql

📁 php 开发的内容管理系统
💻 SQL
字号:
---- Adds rev_text_id field to revision table.-- This is a key to text.old_id, so that revisions can be stored-- for non-save operations without duplicating text, and so that-- a back-end storage system can provide its own numbering system-- if necessary.---- rev.rev_id and text.old_id are no longer assumed to be the same.---- 2005-03-28--ALTER TABLE /*$wgDBprefix*/revision  ADD rev_text_id int(8) unsigned NOT NULL;UPDATE /*$wgDBprefix*/revision  SET rev_text_id=rev_id;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -