remove not null from orgs

This commit is contained in:
miloschwartz 2025-07-16 11:52:36 -07:00
parent d1489a9a78
commit a356147164
No known key found for this signature in database

View file

@ -144,7 +144,7 @@ export default async function migration() {
ALTER TABLE 'domains' ADD 'tries' integer DEFAULT 0 NOT NULL;
ALTER TABLE 'exitNodes' ADD 'maxConnections' integer;
ALTER TABLE 'newt' ADD 'version' text;
ALTER TABLE 'orgs' ADD 'subnet' text NOT NULL;
ALTER TABLE 'orgs' ADD 'subnet' text;
ALTER TABLE 'user' ADD 'twoFactorSetupRequested' integer DEFAULT 0;
ALTER TABLE 'resources' DROP COLUMN 'isBaseDomain';
`);