diff --git a/Tapeti.Flow.SQL/Tapeti.Flow.SQL.csproj b/Tapeti.Flow.SQL/Tapeti.Flow.SQL.csproj index 428bda5..64e5907 100644 --- a/Tapeti.Flow.SQL/Tapeti.Flow.SQL.csproj +++ b/Tapeti.Flow.SQL/Tapeti.Flow.SQL.csproj @@ -1,22 +1,30 @@ - - - - netstandard2.0 - true - 2.0.0 - - - - 1701;1702 - - - - - - - - - - - - + + + + netstandard2.0 + true + 2.0.0 + + + + 1701;1702 + + + + + + + + + + + + + + + + + + + + diff --git a/Tapeti.Flow.SQL/scripts/Flow table.sql b/Tapeti.Flow.SQL/scripts/Flow table.sql new file mode 100644 index 0000000..a04d3f8 --- /dev/null +++ b/Tapeti.Flow.SQL/scripts/Flow table.sql @@ -0,0 +1,13 @@ +/* + + 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) +); \ No newline at end of file