├── LICENSE ├── README.md ├── composer.json └── src └── Schema ├── Activation.php ├── Builder.php ├── Collections ├── Collection.php ├── Column_Collection.php └── Index_Collection.php ├── Columns ├── Binary_Column.php ├── Blob_Column.php ├── Boolean_Column.php ├── Column_Types.php ├── Contracts │ ├── Auto_Incrementable.php │ ├── Column.php │ ├── Column_Interface.php │ ├── Indexable.php │ ├── Lengthable.php │ ├── Precisionable.php │ ├── Primarable.php │ ├── Signable.php │ └── Uniquable.php ├── Created_At.php ├── Datetime_Column.php ├── Float_Column.php ├── ID.php ├── Integer_Column.php ├── Last_Changed.php ├── PHP_Types.php ├── Referenced_ID.php ├── String_Column.php ├── Text_Column.php └── Updated_At.php ├── Config.php ├── Full_Activation_Provider.php ├── Indexes ├── Classic_Index.php ├── Contracts │ ├── Abstract_Index.php │ └── Index.php ├── Fulltext_Index.php ├── Primary_Key.php └── Unique_Key.php ├── Register.php ├── Schema.php ├── Tables ├── Collection.php ├── Contracts │ ├── Table.php │ ├── Table_Interface.php │ └── Table_Schema_Interface.php ├── Filters │ ├── Group_FilterIterator.php │ └── Needs_Update_FilterIterator.php └── Table_Schema.php └── Traits ├── Custom_Table_Query_Methods.php └── Indexable.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/composer.json -------------------------------------------------------------------------------- /src/Schema/Activation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Activation.php -------------------------------------------------------------------------------- /src/Schema/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Builder.php -------------------------------------------------------------------------------- /src/Schema/Collections/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Collections/Collection.php -------------------------------------------------------------------------------- /src/Schema/Collections/Column_Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Collections/Column_Collection.php -------------------------------------------------------------------------------- /src/Schema/Collections/Index_Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Collections/Index_Collection.php -------------------------------------------------------------------------------- /src/Schema/Columns/Binary_Column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Columns/Binary_Column.php -------------------------------------------------------------------------------- /src/Schema/Columns/Blob_Column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Columns/Blob_Column.php -------------------------------------------------------------------------------- /src/Schema/Columns/Boolean_Column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Columns/Boolean_Column.php -------------------------------------------------------------------------------- /src/Schema/Columns/Column_Types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Columns/Column_Types.php -------------------------------------------------------------------------------- /src/Schema/Columns/Contracts/Auto_Incrementable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Columns/Contracts/Auto_Incrementable.php -------------------------------------------------------------------------------- /src/Schema/Columns/Contracts/Column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Columns/Contracts/Column.php -------------------------------------------------------------------------------- /src/Schema/Columns/Contracts/Column_Interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Columns/Contracts/Column_Interface.php -------------------------------------------------------------------------------- /src/Schema/Columns/Contracts/Indexable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Columns/Contracts/Indexable.php -------------------------------------------------------------------------------- /src/Schema/Columns/Contracts/Lengthable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Columns/Contracts/Lengthable.php -------------------------------------------------------------------------------- /src/Schema/Columns/Contracts/Precisionable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Columns/Contracts/Precisionable.php -------------------------------------------------------------------------------- /src/Schema/Columns/Contracts/Primarable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Columns/Contracts/Primarable.php -------------------------------------------------------------------------------- /src/Schema/Columns/Contracts/Signable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Columns/Contracts/Signable.php -------------------------------------------------------------------------------- /src/Schema/Columns/Contracts/Uniquable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Columns/Contracts/Uniquable.php -------------------------------------------------------------------------------- /src/Schema/Columns/Created_At.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Columns/Created_At.php -------------------------------------------------------------------------------- /src/Schema/Columns/Datetime_Column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Columns/Datetime_Column.php -------------------------------------------------------------------------------- /src/Schema/Columns/Float_Column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Columns/Float_Column.php -------------------------------------------------------------------------------- /src/Schema/Columns/ID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Columns/ID.php -------------------------------------------------------------------------------- /src/Schema/Columns/Integer_Column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Columns/Integer_Column.php -------------------------------------------------------------------------------- /src/Schema/Columns/Last_Changed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Columns/Last_Changed.php -------------------------------------------------------------------------------- /src/Schema/Columns/PHP_Types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Columns/PHP_Types.php -------------------------------------------------------------------------------- /src/Schema/Columns/Referenced_ID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Columns/Referenced_ID.php -------------------------------------------------------------------------------- /src/Schema/Columns/String_Column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Columns/String_Column.php -------------------------------------------------------------------------------- /src/Schema/Columns/Text_Column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Columns/Text_Column.php -------------------------------------------------------------------------------- /src/Schema/Columns/Updated_At.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Columns/Updated_At.php -------------------------------------------------------------------------------- /src/Schema/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Config.php -------------------------------------------------------------------------------- /src/Schema/Full_Activation_Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Full_Activation_Provider.php -------------------------------------------------------------------------------- /src/Schema/Indexes/Classic_Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Indexes/Classic_Index.php -------------------------------------------------------------------------------- /src/Schema/Indexes/Contracts/Abstract_Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Indexes/Contracts/Abstract_Index.php -------------------------------------------------------------------------------- /src/Schema/Indexes/Contracts/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Indexes/Contracts/Index.php -------------------------------------------------------------------------------- /src/Schema/Indexes/Fulltext_Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Indexes/Fulltext_Index.php -------------------------------------------------------------------------------- /src/Schema/Indexes/Primary_Key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Indexes/Primary_Key.php -------------------------------------------------------------------------------- /src/Schema/Indexes/Unique_Key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Indexes/Unique_Key.php -------------------------------------------------------------------------------- /src/Schema/Register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Register.php -------------------------------------------------------------------------------- /src/Schema/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Schema.php -------------------------------------------------------------------------------- /src/Schema/Tables/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Tables/Collection.php -------------------------------------------------------------------------------- /src/Schema/Tables/Contracts/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Tables/Contracts/Table.php -------------------------------------------------------------------------------- /src/Schema/Tables/Contracts/Table_Interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Tables/Contracts/Table_Interface.php -------------------------------------------------------------------------------- /src/Schema/Tables/Contracts/Table_Schema_Interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Tables/Contracts/Table_Schema_Interface.php -------------------------------------------------------------------------------- /src/Schema/Tables/Filters/Group_FilterIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Tables/Filters/Group_FilterIterator.php -------------------------------------------------------------------------------- /src/Schema/Tables/Filters/Needs_Update_FilterIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Tables/Filters/Needs_Update_FilterIterator.php -------------------------------------------------------------------------------- /src/Schema/Tables/Table_Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Tables/Table_Schema.php -------------------------------------------------------------------------------- /src/Schema/Traits/Custom_Table_Query_Methods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Traits/Custom_Table_Query_Methods.php -------------------------------------------------------------------------------- /src/Schema/Traits/Indexable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/schema/HEAD/src/Schema/Traits/Indexable.php --------------------------------------------------------------------------------