1
0
mirror of synced 2024-07-01 16:27:40 +00:00
Tapeti/Tapeti.Flow.SQL/scripts/Flow table.sql
Mark van Renswoude 2556eedc7c Added Flow table SQL script as embedded resource
For use with DbUp or other database upgrade tools
2020-01-24 14:53:11 +01:00

13 lines
313 B
SQL

/*
This script is embedded in the Tapeti.Flow.SQL package so it can be used with, for example, DbUp
*/
create table Flow
(
FlowID uniqueidentifier not null,
CreationTime datetime2(3) not null,
StateJson nvarchar(max) null,
constraint PK_Flow primary key clustered(FlowID)
);