Merged PR 504: 利用規約テーブルの初期値を設定
## 概要 [Task2853: 利用規約テーブルの初期値を設定](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/2853) - termsテーブルの初期データを登録するmigrateファイルを追加しました。 ## レビューポイント - 特にありません ## UIの変更 - なし ## 動作確認状況 - migrate upでデータ登録されること、downで削除されることを確認 ## 補足 - 相談、参考資料などがあれば
This commit is contained in:
parent
2f5516ec81
commit
364bfb5135
@ -0,0 +1,9 @@
|
||||
-- +migrate Up
|
||||
insert into terms(terms.document_type, terms.version) values('EURA', 'V0.1');
|
||||
insert into terms(terms.document_type, terms.version) values('DPA', 'V0.1');
|
||||
commit;
|
||||
|
||||
-- +migrate Down
|
||||
delete from terms where terms.document_type = 'EURA' and terms.version = 'V0.1';
|
||||
delete from terms where terms.document_type = 'DPA' and terms.version = 'V0.1';
|
||||
commit;
|
||||
Loading…
x
Reference in New Issue
Block a user