20 lines
1.1 KiB
SQL
20 lines
1.1 KiB
SQL
|
|
/*
|
||
|
|
Warnings:
|
||
|
|
|
||
|
|
- You are about to drop the column `is_stable` on the `application_released_info` table. All the data in the column will be lost.
|
||
|
|
- You are about to drop the column `type` on the `application_released_info` table. All the data in the column will be lost.
|
||
|
|
- Added the required column `platform` to the `application_released_info` table without a default value. This is not possible if the table is not empty.
|
||
|
|
- Added the required column `release_type` to the `application_released_info` table without a default value. This is not possible if the table is not empty.
|
||
|
|
- Added the required column `publisher` to the `consumer_devices` table without a default value. This is not possible if the table is not empty.
|
||
|
|
|
||
|
|
*/
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE `application_released_info` DROP COLUMN `is_stable`,
|
||
|
|
DROP COLUMN `type`,
|
||
|
|
ADD COLUMN `platform` ENUM('ANDROID', 'IOS') NOT NULL,
|
||
|
|
ADD COLUMN `release_type` ENUM('STABLE', 'BETA', 'ALPHA') NOT NULL;
|
||
|
|
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE `consumer_devices` ADD COLUMN `publisher` ENUM('DIRECT', 'CAFE_BAZAR', 'MAYKET') NOT NULL,
|
||
|
|
ADD COLUMN `user_agent` VARCHAR(100) NULL;
|