drizzle-kit push:pg and sql commands

I have a schema that I can easily push to my PostgreSQL database. But whenever I have something I want to do outside what I can define within the schema, I need to do a manual sql command in my database.
For example I want to run
alter table "table_name" enable row level security;
for my tables, and I want to add that so it is applied when I run drizzle-kit push:pg. Is this possible?
Was this page helpful?