You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

poweradmin-sqlite-update-to-2.1.7.sql 293B

123456789101112
  1. ALTER TABLE users ADD use_ldap BOOLEAN NOT NULL DEFAULT 0;
  2. CREATE TABLE records_zone_templ (
  3. domain_id int(11) NOT NULL,
  4. record_id int(11) NOT NULL,
  5. zone_templ_id int(11) NOT NULL
  6. );
  7. CREATE TABLE migrations (
  8. version varchar(255) NOT NULL,
  9. apply_time int(11) NOT NULL
  10. );