app_detail.sql 322 B

12345678910
  1. drop table if exists `app_detail`;
  2. create table `app_download_count`
  3. (
  4. id BIGINT PRIMARY KEY auto_increament,
  5. folder_name VARCHAR(255),
  6. img_src VARCHAR(255),
  7. app_name VARCHAR(255),
  8. brief VARCHAR(255),
  9. package_description VARCHAR(255)
  10. )