From 46be34c4b0c9d60211f81e02ecdb145308ee5a32 Mon Sep 17 00:00:00 2001 From: Timo Hocker Date: Sun, 28 Jun 2020 17:02:46 +0200 Subject: [PATCH] add copyright --- lib/snippets/database/patch_actions/ActionFactory.ts | 7 +++++++ lib/snippets/database/patch_actions/AddTable.ts | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/lib/snippets/database/patch_actions/ActionFactory.ts b/lib/snippets/database/patch_actions/ActionFactory.ts index 704afb9..8b7bfcc 100644 --- a/lib/snippets/database/patch_actions/ActionFactory.ts +++ b/lib/snippets/database/patch_actions/ActionFactory.ts @@ -1,3 +1,10 @@ +/* + * Copyright (C) SapphireCode - All Rights Reserved + * This file is part of Snippeteer which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , June 2020 + */ + import { PatchAction } from '../classes/PatchAction'; export class ActionFactory { diff --git a/lib/snippets/database/patch_actions/AddTable.ts b/lib/snippets/database/patch_actions/AddTable.ts index cf629f3..bca898b 100644 --- a/lib/snippets/database/patch_actions/AddTable.ts +++ b/lib/snippets/database/patch_actions/AddTable.ts @@ -1,3 +1,10 @@ +/* + * Copyright (C) SapphireCode - All Rights Reserved + * This file is part of Snippeteer which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , June 2020 + */ + import { Persistent } from '@sapphirecode/modelling'; import { PatchAction } from '../classes/PatchAction'; import { Database } from '../classes/Database';