salix/db/versions/11175-pinkChico/00-firstScript.sql

8 lines
183 B
MySQL
Raw Normal View History

USE vn;
CREATE TABLE IF NOT EXISTS ormConfig (
id int(5) NOT NULL AUTO_INCREMENT primary key,
selectLimit int(5) NOT NULL
);
INSERT IGNORE INTO ormConfig SET selectLimit = 1000;