LINUX.ORG.RU

История изменений

Исправление Legioner, (текущая версия) :

create table room_booking (
    room_id integer not null,
    date date not null,
    price numeric not null,
    booking_id integer,
    primary key (room_id, date)
);

Исходная версия Legioner, :

create table room_booking (
    room_id integer not null,
    date date not null,
    booking_id integer,
    primary key (room_id, date)
);