282fc04aea149b6c7a76707c6b9ae5f8bcedaadc
[Pman.Core] / sql / core_oauth_scopes.sql
1 CREATE TABLE core_oauth_scopes (
2     id INT(11) NOT NULL AUTO_INCREMENT,
3     scope TEXT, 
4     is_default BOOLEAN,
5     PRIMARY KEY (id)
6 );
7
8 call mysql_change_engine('core_oauth_scopes');