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-pgsql-update-to-2.1.7.sql 301B

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