limit_check_lock (#287)

This commit is contained in:
Michael Quigley
2024-05-15 14:31:26 -04:00
parent fecb8952c8
commit f0b0a959f0
3 changed files with 27 additions and 2 deletions

View File

@ -0,0 +1,7 @@
-- +migrate Up
create table limit_check_locks (
id serial primary key,
account_id integer not null references accounts (id),
updated_at timestamptz not null default(current_timestamp)
);