Add private_key and public_key fields to instances table

This commit is contained in:
Kitaiti Makoto 2021-09-08 22:14:44 +09:00
parent 394273e866
commit c2dcac4413
2 changed files with 4 additions and 2 deletions

View File

@ -1 +1,2 @@
-- This file should undo anything in `up.sql` ALTER TABLE instances DROP COLUMN private_key;
ALTER TABLE instances DROP COLUMN public_key;

View File

@ -1 +1,2 @@
-- Your SQL goes here ALTER TABLE instances ADD COLUMN private_key TEXT;
ALTER TABLE instances ADD COLUMN public_key TEXT;