setup.sql 1.1 KB

1234567891011121314151617181920212223242526
  1. /* SQL for MySQL to create iEat system tables.
  2. * ===================================================================
  3. * This program is free software; you can redistribute it and/or
  4. * modify it under the terms of the GNU General Public License as
  5. * published by the Free Software Foundation; either version 2 of
  6. * the License, or (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. * General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program; if not, write to the Free Software
  15. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  16. * 02111-1307 USA
  17. * ===================================================================
  18. * $Id: setup.sql 92 2009-05-19 01:37:42Z msqr $
  19. * ===================================================================
  20. */
  21. create table settings (
  22. skey varchar(128) not null,
  23. svalue varchar(255),
  24. primary key (skey)
  25. );