schema-mssql.sql 504 B

12345678910111213141516171819202122
  1. /**
  2. * Database schema required by \yii\web\DbSession.
  3. *
  4. * @author Qiang Xue <qiang.xue@gmail.com>
  5. * @author Misbahul D Munir <misbahuldmunir@gmail.com>
  6. * @link http://www.yiiframework.com/
  7. * @copyright 2008 Yii Software LLC
  8. * @license http://www.yiiframework.com/license/
  9. * @since 2.0.8
  10. */
  11. if object_id('[session]', 'U') is not null
  12. drop table [session];
  13. create table [session]
  14. (
  15. [id] varchar(256) not null,
  16. [expire] integer,
  17. [data] nvarchar(max),
  18. primary key ([id])
  19. );