Nov. 6th, 2013

juan_gandhi: (VP)
"Уровень 5
Всего вопросов - 35. Проходной балл - 20
У вас правильных ответов - 29
Поздравляем, Вы ИСТИННЫЙ СОВОК.
Заниматься трудовой деятельностью в этой стране вам уже не обязательно. При определенных условиях вам может быть присвоено звание почетного гражданина Санкт-Петербурга. Вы можете претендовать на место у окна в Общественной палате и, безусловно, заслуживаете крепкого рукопожатия главы государства."

пройти тест на совка
juan_gandhi: (VP)
(take 2)
create type status as enum('ok','','fails','unavailable','n/a', 'no plans');

create type functionality as enum(
  'can dig',
  'can eat',
  'can code',
  'can drink',
  'development level',
  'currently'
  );

drop table if exists status_log;
create table status_log (
  plan_id bigint not null, -- which plan is this status about
  created_on timestamp without time zone not null, -- creation time; no updates!
  created_by character varying(20) not null, -- who'd done it
  feature functionality not null, -- select the feature which status you log
  status status not null, -- how is the feature doing
  note  character varying(80),
  CONSTRAINT status_log_key_uniqueness UNIQUE (plan_id, created_on, feature),
  CONSTRAINT status_log_plan_id_fkey FOREIGN KEY (plan_id)
      REFERENCES ins_plan (id) MATCH SIMPLE
      ON UPDATE NO ACTION ON DELETE NO ACTION
);

Profile

juan_gandhi: (Default)
Juan-Carlos Gandhi

September 2025

S M T W T F S
 1 2345 6
78 9 10 111213
14 151617 181920
212223 24252627
28 2930    

Most Popular Tags

Style Credit

Expand Cut Tags

No cut tags
Page generated Oct. 1st, 2025 01:42 pm
Powered by Dreamwidth Studios