Y2S1-Database_Design/SQL/individual_creates/6 - VideoEncode.Table.sql

20 lines
1.1 KiB
MySQL
Raw Permalink Normal View History

2020-06-07 21:29:59 +00:00
<EFBFBD><EFBFBD>USE [MediaLibrary]
GO
/****** Object: Table [dbo].[VideoEncode] Script Date: 14/12/2018 00:20:30 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[VideoEncode](
[EncodeID] [int] IDENTITY(1,1) NOT NULL,
[EncodeName] [varchar](255) NOT NULL,
[Width] [int] NOT NULL,
[Height] [int] NOT NULL,
[Framerate] [int] NOT NULL,
PRIMARY KEY CLUSTERED
(
[EncodeID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO