You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

schema-oci.sql 808B

123456789101112131415161718192021222324252627
  1. /**
  2. * Database schema required by \yii\log\DbTarget.
  3. *
  4. * The indexes declared are not required. They are mainly used to improve the performance
  5. * of some queries about message levels and categories. Depending on your actual needs, you may
  6. * want to create additional indexes (e.g. index on `log_time`).
  7. *
  8. * @author Alexander Makarov <sam@rmcreative.ru>
  9. * @link http://www.yiiframework.com/
  10. * @copyright 2008 Yii Software LLC
  11. * @license http://www.yiiframework.com/license/
  12. * @since 2.0.1
  13. */
  14. drop table if exists "log";
  15. create table "log"
  16. (
  17. "id" number(20) NOT NULL PRIMARY KEY,
  18. "level" integer,
  19. "category" varchar(255),
  20. "log_time" number,
  21. "prefix" text,
  22. "message" text,
  23. key "idx_log_level" ("level"),
  24. key "idx_log_category" ("category")
  25. );