|
@ -14,10 +14,10 @@ export const client = sqliteTable('clients_table', { |
|
|
name: text().notNull(), |
|
|
name: text().notNull(), |
|
|
ipv4Address: text('ipv4_address').notNull().unique(), |
|
|
ipv4Address: text('ipv4_address').notNull().unique(), |
|
|
ipv6Address: text('ipv6_address').notNull().unique(), |
|
|
ipv6Address: text('ipv6_address').notNull().unique(), |
|
|
preUp: text('pre_up').default(''), |
|
|
preUp: text('pre_up').default('').notNull(), |
|
|
postUp: text('post_up').default(''), |
|
|
postUp: text('post_up').default('').notNull(), |
|
|
preDown: text('pre_down').default(''), |
|
|
preDown: text('pre_down').default('').notNull(), |
|
|
postDown: text('post_down').default(''), |
|
|
postDown: text('post_down').default('').notNull(), |
|
|
privateKey: text('private_key').notNull(), |
|
|
privateKey: text('private_key').notNull(), |
|
|
publicKey: text('public_key').notNull(), |
|
|
publicKey: text('public_key').notNull(), |
|
|
preSharedKey: text('pre_shared_key').notNull(), |
|
|
preSharedKey: text('pre_shared_key').notNull(), |
|
|