create_calendar_info.sql 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. create table public.calendar_info
  2. (
  3. id serial
  4. primary key,
  5. yangli date not null,
  6. yinli text not null,
  7. wuxing text,
  8. chongsha text,
  9. baiji text,
  10. jishen text,
  11. yi text,
  12. xiongshen text,
  13. ji text,
  14. color varchar(10)
  15. );
  16. comment on table public.calendar_info is '黄历信息表';
  17. comment on column public.calendar_info.id is '主键ID';
  18. comment on column public.calendar_info.yangli is '阳历日期';
  19. comment on column public.calendar_info.yinli is '阴历日期';
  20. comment on column public.calendar_info.wuxing is '五行';
  21. comment on column public.calendar_info.chongsha is '冲煞';
  22. comment on column public.calendar_info.baiji is '彭祖百忌';
  23. comment on column public.calendar_info.jishen is '吉神宜趋';
  24. comment on column public.calendar_info.yi is '宜';
  25. comment on column public.calendar_info.xiongshen is '凶神宜忌';
  26. comment on column public.calendar_info.ji is '忌';
  27. comment on column public.calendar_info.color is '颜色';