All Downloads are FREE. Search and download functionalities are using the official Maven repository.

database.sqlserver.schema Maven / Gradle / Ivy

The newest version!
--
-- Script to create SQL Server schema
-- Table & index names are suffixed by 3 underscores to define a
-- pattern to replace with the domain name
--
IF NOT EXISTS( SELECT 1 FROM sysobjects WHERE name = 'idp_users___' AND xtype = 'U' ) CREATE TABLE idp_users___ (id NVARCHAR(64) NOT NULL, username NVARCHAR(320) NOT NULL UNIQUE, password NVARCHAR(255) NULL, email NVARCHAR(320) NULL, metadata NVARCHAR(MAX) NULL, PRIMARY KEY (id), INDEX idp_users____username_idx NONCLUSTERED (username))




© 2015 - 2025 Weber Informatics LLC | Privacy Policy