我滴个乖乖
This commit is contained in:
21
ZelWiki.Repository/Scripts/InsertPageFileRevision.sql
Normal file
21
ZelWiki.Repository/Scripts/InsertPageFileRevision.sql
Normal file
@@ -0,0 +1,21 @@
|
||||
--Insert the actual file data.
|
||||
INSERT INTO PageFileRevision
|
||||
(
|
||||
PageFileId,
|
||||
ContentType,
|
||||
Size,
|
||||
CreatedDate,
|
||||
CreatedByUserId,
|
||||
[Data],
|
||||
Revision,
|
||||
DataHash
|
||||
)
|
||||
SELECT
|
||||
@PageFileId,
|
||||
@ContentType,
|
||||
@Size,
|
||||
@CreatedDate,
|
||||
@CreatedByUserId,
|
||||
@Data,
|
||||
@FileRevision,
|
||||
@DataHash;
|
||||
Reference in New Issue
Block a user