move auto generate documentation to documentation/api folder

start to create a new file for insertion in database
add locale column to lang table
This commit is contained in:
Manuel Raynaud
2013-02-11 10:59:31 +01:00
parent 4af7d1c6ce
commit ccee45c48a
1425 changed files with 266 additions and 152 deletions

5
install/insert.sql Normal file
View File

@@ -0,0 +1,5 @@
INSERT INTO `lang`(`id`,`title`,`code`,`locale`,`url`,`by_default`,`created_at`,`updated_at`)VALUES
(1, 'Français', 'fr', 'fr_FR', '','1', NOW(), NOW()),
(2, 'English', 'en', 'en_EN', '', '0', NOW(), NOW()),
(3, 'Espanol', 'es', 'es_ES', '', '0', NOW(), NOW()),
(4, 'Italiano', 'it', 'it_IT', '','0', NOW(), NOW());