1
0
mirror of synced 2024-07-03 09:00:36 +00:00
Tapeti/Tapeti.Flow.SQL/scripts/Flow table.sql

13 lines
313 B
MySQL
Raw Permalink Normal View History

/*
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)
);