From 176366a24d81245ce4ba9e255bc62646ef4248c7 Mon Sep 17 00:00:00 2001 From: Alexander Kochetov Date: Fri, 10 May 2013 21:49:54 +0400 Subject: [PATCH] RBAC sql files identation fix --- yii/rbac/schema-mssql.sql | 4 ++-- yii/rbac/schema-mysql.sql | 4 ++-- yii/rbac/schema-oci.sql | 4 ++-- yii/rbac/schema-pgsql.sql | 4 ++-- yii/rbac/schema-sqlite.sql | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/yii/rbac/schema-mssql.sql b/yii/rbac/schema-mssql.sql index f02b261..a1170b1 100644 --- a/yii/rbac/schema-mssql.sql +++ b/yii/rbac/schema-mssql.sql @@ -34,8 +34,8 @@ create table [tbl_auth_item_child] create table [tbl_auth_assignment] ( - [item_name] varchar(64) not null, - [user_id] varchar(64) not null, + [item_name] varchar(64) not null, + [user_id] varchar(64) not null, [bizrule] text, [data] text, primary key ([item_name],[user_id]), diff --git a/yii/rbac/schema-mysql.sql b/yii/rbac/schema-mysql.sql index 687a436..aa8015b 100644 --- a/yii/rbac/schema-mysql.sql +++ b/yii/rbac/schema-mysql.sql @@ -34,8 +34,8 @@ create table `tbl_auth_item_child` create table `tbl_auth_assignment` ( - `item_name` varchar(64) not null, - `user_id` varchar(64) not null, + `item_name` varchar(64) not null, + `user_id` varchar(64) not null, `bizrule` text, `data` text, primary key (`item_name`,`user_id`), diff --git a/yii/rbac/schema-oci.sql b/yii/rbac/schema-oci.sql index 623fba2..16b7964 100644 --- a/yii/rbac/schema-oci.sql +++ b/yii/rbac/schema-oci.sql @@ -34,8 +34,8 @@ create table "tbl_auth_item_child" create table "tbl_auth_assignment" ( - "item_name" varchar(64) not null, - "user_id" varchar(64) not null, + "item_name" varchar(64) not null, + "user_id" varchar(64) not null, "bizrule" text, "data" text, primary key ("item_name","user_id"), diff --git a/yii/rbac/schema-pgsql.sql b/yii/rbac/schema-pgsql.sql index 623fba2..16b7964 100644 --- a/yii/rbac/schema-pgsql.sql +++ b/yii/rbac/schema-pgsql.sql @@ -34,8 +34,8 @@ create table "tbl_auth_item_child" create table "tbl_auth_assignment" ( - "item_name" varchar(64) not null, - "user_id" varchar(64) not null, + "item_name" varchar(64) not null, + "user_id" varchar(64) not null, "bizrule" text, "data" text, primary key ("item_name","user_id"), diff --git a/yii/rbac/schema-sqlite.sql b/yii/rbac/schema-sqlite.sql index 32eb363..668196e 100644 --- a/yii/rbac/schema-sqlite.sql +++ b/yii/rbac/schema-sqlite.sql @@ -34,8 +34,8 @@ create table 'tbl_auth_item_child' create table 'tbl_auth_assignment' ( - "item_name" varchar(64) not null, - "user_id" varchar(64) not null, + "item_name" varchar(64) not null, + "user_id" varchar(64) not null, "bizrule" text, "data" text, primary key ("item_name","user_id"),