summaryrefslogtreecommitdiff
path: root/migrations/20241005021100_event_sequence.sql
blob: ac6821d6dbbf0241323b3e60242a6c8a3ed231ad (plain)
1
2
3
4
5
6
7
8
9
10
create table event_sequence (
	last_value bigint
		not null
);

create unique index event_sequence_singleton
on event_sequence (0);

insert into event_sequence
values (0);