diff options
| author | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 15:29:41 +0000 |
|---|---|---|
| committer | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 15:29:41 +0000 |
| commit | 225aa1499e37faf9d38257caabbadc68d78b427e (patch) | |
| tree | 102bb7a40c58595348ae9d3c7076201759fe0720 /Decompiler/Gestor.Application.Migration.Files.20200408_31.SQL | |
| parent | 1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1 (diff) | |
| download | gestor-225aa1499e37faf9d38257caabbadc68d78b427e.tar.gz gestor-225aa1499e37faf9d38257caabbadc68d78b427e.zip | |
decompiler.com
Diffstat (limited to 'Decompiler/Gestor.Application.Migration.Files.20200408_31.SQL')
| -rw-r--r-- | Decompiler/Gestor.Application.Migration.Files.20200408_31.SQL | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Decompiler/Gestor.Application.Migration.Files.20200408_31.SQL b/Decompiler/Gestor.Application.Migration.Files.20200408_31.SQL new file mode 100644 index 0000000..4b03778 --- /dev/null +++ b/Decompiler/Gestor.Application.Migration.Files.20200408_31.SQL @@ -0,0 +1,28 @@ +IF (NOT EXISTS (SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 'titular'))
+BEGIN
+
+CREATE TABLE [dbo].[titular](
+ [IDTITULAR] [bigint] IDENTITY(1,1) NOT NULL PRIMARY KEY,
+ [idvida] [bigint] NULL,
+ [plano] [varchar](120) NULL,
+ [nome] [varchar](120) NULL,
+ [nascimento] [date] NULL,
+ [CGCCPF] [varchar](18) NULL,
+ [certificado] [varchar](30) NULL,
+ [matricula] [varchar](30) NULL,
+ [capital] [numeric](12, 2) NULL,
+ [premio] [numeric](8, 2) NULL,
+ [usuariocriacao] [bigint] NULL,
+ [usuarioalteracao] [bigint] NULL,
+ [datacriacao] [datetime] NULL,
+ [dataalteracao] [datetime] NULL,
+ [idtitularcopiado] [bigint] NULL,
+ [saida] [date] NULL,
+ [obs] [varchar](max) NULL,
+ [RG] [varchar](13) NULL,
+ [emissao] [date] NULL,
+ [rguf] [varchar](2) NULL,
+ [entrada] [date] NULL);
+
+END
+
|