forked from ddrilling/AsbCloudServer
Add default data (operations dictionary) migration
This commit is contained in:
parent
c0a4716341
commit
a046194e35
2028
AsbCloudDb/Migrations/20210913043806_AddDefaultData.Designer.cs
generated
Normal file
2028
AsbCloudDb/Migrations/20210913043806_AddDefaultData.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
33
AsbCloudDb/Migrations/20210913043806_AddDefaultData.cs
Normal file
33
AsbCloudDb/Migrations/20210913043806_AddDefaultData.cs
Normal file
@ -0,0 +1,33 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
namespace AsbCloudDb.Migrations
|
||||
{
|
||||
public partial class AddDefaultData : Migration
|
||||
{
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DeleteData(
|
||||
table: "t_well_operation_category",
|
||||
keyColumn: "id",
|
||||
keyValue: 1019);
|
||||
|
||||
migrationBuilder.InsertData(
|
||||
table: "t_well_operation_category",
|
||||
columns: new[] { "id", "code", "name" },
|
||||
values: new object[] { 1050, 0, "Промывка при спуске ОК" });
|
||||
}
|
||||
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DeleteData(
|
||||
table: "t_well_operation_category",
|
||||
keyColumn: "id",
|
||||
keyValue: 1050);
|
||||
|
||||
migrationBuilder.InsertData(
|
||||
table: "t_well_operation_category",
|
||||
columns: new[] { "id", "code", "name" },
|
||||
values: new object[] { 1019, 0, "Перетяжка тальканата" });
|
||||
}
|
||||
}
|
||||
}
|
@ -1440,12 +1440,6 @@ namespace AsbCloudDb.Migrations
|
||||
Name = "Перетяжка талевого каната"
|
||||
},
|
||||
new
|
||||
{
|
||||
Id = 1019,
|
||||
Code = 0,
|
||||
Name = "Перетяжка тальканата"
|
||||
},
|
||||
new
|
||||
{
|
||||
Id = 1020,
|
||||
Code = 0,
|
||||
@ -1618,6 +1612,12 @@ namespace AsbCloudDb.Migrations
|
||||
Id = 1048,
|
||||
Code = 0,
|
||||
Name = "Спуск ОК"
|
||||
},
|
||||
new
|
||||
{
|
||||
Id = 1050,
|
||||
Code = 0,
|
||||
Name = "Промывка при спуске ОК"
|
||||
});
|
||||
});
|
||||
|
||||
|
@ -241,7 +241,6 @@ namespace AsbCloudDb.Model
|
||||
new WellOperationCategory {Id = 1016, Name = "Перевод скв на другой тип промывочной жидкости", Code = 0 },
|
||||
new WellOperationCategory {Id = 1017, Name = "Перезапись каротажа", Code = 0 },
|
||||
new WellOperationCategory {Id = 1018, Name = "Перетяжка талевого каната", Code = 0 },
|
||||
new WellOperationCategory {Id = 1019, Name = "Перетяжка тальканата", Code = 0 },
|
||||
new WellOperationCategory {Id = 1020, Name = "Подъем инструмента", Code = 0 },
|
||||
new WellOperationCategory {Id = 1021, Name = "Подъем инструмента с промывкой", Code = 0 },
|
||||
new WellOperationCategory {Id = 1022, Name = "Обратная проработка", Code = 0 },
|
||||
@ -270,7 +269,8 @@ namespace AsbCloudDb.Model
|
||||
new WellOperationCategory {Id = 1045, Name = "Прочее", Code = 0 },
|
||||
new WellOperationCategory {Id = 1046, Name = "Спуск КНБК", Code = 0 },
|
||||
new WellOperationCategory {Id = 1047, Name = "Подъем КНБК", Code = 0 },
|
||||
new WellOperationCategory {Id = 1048, Name = "Спуск ОК", Code = 0 }
|
||||
new WellOperationCategory {Id = 1048, Name = "Спуск ОК", Code = 0 },
|
||||
new WellOperationCategory {Id = 1050, Name = "Промывка при спуске ОК", Code = 0 }
|
||||
});
|
||||
});
|
||||
|
||||
|
@ -1,4 +1,14 @@
|
||||
Применить миграции
|
||||
создать миграцию
|
||||
```
|
||||
dotnet ef migrations add <MigrationName> --project AsbCloudDb
|
||||
```
|
||||
создать миграцию
|
||||
```
|
||||
dotnet ef migrations remvoe <MigrationName> --project AsbCloudDb
|
||||
```
|
||||
<MigrationName> - Name of migration class
|
||||
|
||||
Применить миграции
|
||||
```
|
||||
dotnet ef database update --project .\AsbCloudDb
|
||||
```
|
@ -1,269 +0,0 @@
|
||||
create table t_deposit
|
||||
(
|
||||
id serial not null
|
||||
constraint t_deposit_pk
|
||||
primary key,
|
||||
caption varchar(255)
|
||||
);
|
||||
|
||||
comment on table t_deposit is 'Месторождение';
|
||||
|
||||
alter table t_deposit
|
||||
owner to postgres;
|
||||
|
||||
create table t_cluster
|
||||
(
|
||||
id serial not null
|
||||
constraint t_cluster_pk
|
||||
primary key,
|
||||
caption varchar(255),
|
||||
id_deposit integer
|
||||
constraint t_cluster_t_deposit_id_fk
|
||||
references t_deposit
|
||||
);
|
||||
|
||||
comment on table t_cluster is 'Кусты';
|
||||
|
||||
alter table t_cluster
|
||||
owner to postgres;
|
||||
|
||||
create table t_customer
|
||||
(
|
||||
id serial not null
|
||||
constraint t_customer_pk
|
||||
primary key,
|
||||
caption varchar(255)
|
||||
);
|
||||
|
||||
alter table t_customer
|
||||
owner to postgres;
|
||||
|
||||
create table t_well
|
||||
(
|
||||
id serial not null
|
||||
constraint t_well_pk
|
||||
primary key,
|
||||
caption varchar(255),
|
||||
id_cluster integer
|
||||
constraint t_well_t_cluster_id_fk
|
||||
references t_cluster,
|
||||
id_customer integer
|
||||
constraint t_well_t_customer_id_fk
|
||||
references t_customer
|
||||
);
|
||||
|
||||
comment on table t_well is 'скважины';
|
||||
|
||||
alter table t_well
|
||||
owner to postgres;
|
||||
|
||||
create table t_telemetry
|
||||
(
|
||||
id serial not null
|
||||
constraint t_telemetry_pk
|
||||
primary key,
|
||||
remote_uid text,
|
||||
info json,
|
||||
data json,
|
||||
id_well integer
|
||||
constraint t_telemetry_t_well_id_fk
|
||||
references t_well,
|
||||
version varchar(64)
|
||||
);
|
||||
|
||||
comment on table t_telemetry is 'таблица привязки телеметрии от комплектов к конкретной скважине.';
|
||||
|
||||
comment on column t_telemetry.remote_uid is 'Идентификатор передающего устройства. Может посторяться в списке, так как комплекты оборудования переезжают от скв. к скв.';
|
||||
|
||||
comment on column t_telemetry.info is 'Информация с панели о скважине';
|
||||
|
||||
comment on column t_telemetry.data is 'последние пришедшие данные со скважины в сыром виде';
|
||||
|
||||
comment on column t_telemetry.version is 'Версия ПО в комплекте';
|
||||
|
||||
alter table t_telemetry
|
||||
owner to postgres;
|
||||
|
||||
create index t_telemetry_remote_uid_index
|
||||
on t_telemetry (remote_uid);
|
||||
|
||||
create index t_telemetry_version_index
|
||||
on t_telemetry (version);
|
||||
|
||||
create table t_data_saub_base
|
||||
(
|
||||
id serial not null
|
||||
constraint t_data_saub_base_pk
|
||||
primary key,
|
||||
id_telemetry integer not null
|
||||
constraint t_data_saub_base_t_telemetry_id_fk
|
||||
references t_telemetry,
|
||||
date timestamp with time zone,
|
||||
mode integer,
|
||||
well_depth double precision,
|
||||
bit_depth double precision,
|
||||
block_height double precision,
|
||||
block_speed double precision,
|
||||
block_speed_sp double precision,
|
||||
pressure double precision,
|
||||
pressure_idle double precision,
|
||||
pressure_sp double precision,
|
||||
pressure_delta_limit_max double precision,
|
||||
axial_load double precision,
|
||||
axial_load_sp double precision,
|
||||
axial_load_limit_max double precision,
|
||||
hook_weight double precision,
|
||||
hook_weight_idle double precision,
|
||||
hook_weight_limit_min double precision,
|
||||
hook_weight_limit_max double precision,
|
||||
rotor_torque double precision,
|
||||
rotor_torque_idle double precision,
|
||||
rotor_torque_sp double precision,
|
||||
rotor_torque_limit_max double precision,
|
||||
rotor_speed double precision,
|
||||
flow double precision,
|
||||
flow_idle double precision,
|
||||
flow_delta_limit_max double precision
|
||||
);
|
||||
|
||||
comment on table t_data_saub_base is 'набор основных данных по SAUB';
|
||||
|
||||
comment on column t_data_saub_base.date is '''2021-10-19 18:23:54+05''';
|
||||
|
||||
comment on column t_data_saub_base.mode is 'Режим САУБ';
|
||||
|
||||
comment on column t_data_saub_base.well_depth is 'Глубина забоя';
|
||||
|
||||
comment on column t_data_saub_base.bit_depth is 'Положение инструмента';
|
||||
|
||||
comment on column t_data_saub_base.block_height is 'Высота талевого блока';
|
||||
|
||||
comment on column t_data_saub_base.block_speed is 'Скорость талевого блока';
|
||||
|
||||
comment on column t_data_saub_base.block_speed_sp is 'Скорости талевого блока. Задание';
|
||||
|
||||
comment on column t_data_saub_base.pressure is 'Давление';
|
||||
|
||||
comment on column t_data_saub_base.pressure_idle is 'Давление. Холостой ход';
|
||||
|
||||
comment on column t_data_saub_base.pressure_sp is 'Давление. Задание';
|
||||
|
||||
comment on column t_data_saub_base.pressure_delta_limit_max is 'Давление дифф. Аварийное макс.';
|
||||
|
||||
comment on column t_data_saub_base.axial_load is 'Осевая нагрузка';
|
||||
|
||||
comment on column t_data_saub_base.axial_load_sp is 'Осевая нагрузка. Задание';
|
||||
|
||||
comment on column t_data_saub_base.axial_load_limit_max is 'Осевая нагрузка. Аварийная макс.';
|
||||
|
||||
comment on column t_data_saub_base.hook_weight is 'Вес на крюке';
|
||||
|
||||
comment on column t_data_saub_base.hook_weight_idle is 'Вес на крюке. Холостой ход';
|
||||
|
||||
comment on column t_data_saub_base.hook_weight_limit_min is 'Вес на крюке. Посадка';
|
||||
|
||||
comment on column t_data_saub_base.hook_weight_limit_max is 'Вес на крюке. Затяжка';
|
||||
|
||||
comment on column t_data_saub_base.rotor_torque is 'Момент на роторе';
|
||||
|
||||
comment on column t_data_saub_base.rotor_torque_idle is 'Момент на роторе. Холостой ход';
|
||||
|
||||
comment on column t_data_saub_base.rotor_torque_sp is 'Момент на роторе. Задание';
|
||||
|
||||
comment on column t_data_saub_base.rotor_torque_limit_max is 'Момент на роторе. Аварийный макс.';
|
||||
|
||||
comment on column t_data_saub_base.rotor_speed is 'Обороты ротора';
|
||||
|
||||
comment on column t_data_saub_base.flow is 'Расход';
|
||||
|
||||
comment on column t_data_saub_base.flow_idle is 'Расход. Холостой ход';
|
||||
|
||||
comment on column t_data_saub_base.flow_delta_limit_max is 'Расход. Аварийный макс.';
|
||||
|
||||
alter table t_data_saub_base
|
||||
owner to postgres;
|
||||
|
||||
create table t_user
|
||||
(
|
||||
id serial not null
|
||||
constraint t_user_pk
|
||||
primary key,
|
||||
id_customer integer
|
||||
constraint t_user_t_customer_id_fk
|
||||
references t_customer,
|
||||
login varchar(255),
|
||||
password_hash varchar(255),
|
||||
state smallint,
|
||||
level integer,
|
||||
name varchar(255),
|
||||
surname varchar(255),
|
||||
patronymic varchar(255)
|
||||
);
|
||||
|
||||
comment on table t_user is 'Пользователи облака';
|
||||
|
||||
comment on column t_user.password_hash is 'соленый хэш пароля.
|
||||
первые 5 символов - соль';
|
||||
|
||||
comment on column t_user.state is 'состояние:
|
||||
100 - удален';
|
||||
|
||||
alter table t_user
|
||||
owner to postgres;
|
||||
|
||||
create table t_message
|
||||
(
|
||||
id serial not null
|
||||
constraint t_messages_pk
|
||||
primary key,
|
||||
id_telemetry integer
|
||||
constraint t_messages_t_telemetry_id_fk
|
||||
references t_telemetry,
|
||||
id_event integer not null,
|
||||
id_user integer,
|
||||
date timestamp with time zone not null,
|
||||
state integer,
|
||||
arg0 varchar(255),
|
||||
arg1 varchar(255),
|
||||
arg3 varchar(255),
|
||||
arg4 varchar(255)
|
||||
);
|
||||
|
||||
alter table t_message
|
||||
owner to postgres;
|
||||
|
||||
create table t_event
|
||||
(
|
||||
id_event integer,
|
||||
version varchar(64),
|
||||
id_category integer,
|
||||
message_template text,
|
||||
constraint t_event_pk
|
||||
unique (id_event, version)
|
||||
);
|
||||
|
||||
comment on table t_event is 'Справочник сообщений. Разделение по версиям посылок телеметрии.';
|
||||
|
||||
alter table t_event
|
||||
owner to postgres;
|
||||
|
||||
create table t_telemetry_user
|
||||
(
|
||||
id_user integer not null,
|
||||
id_telemetry integer not null
|
||||
constraint t_telemetry_user_t_telemetry_id_fk
|
||||
references t_telemetry,
|
||||
name varchar(255),
|
||||
surname varchar(255),
|
||||
patronymic varchar(255),
|
||||
level integer,
|
||||
constraint t_telemetry_user_pk
|
||||
unique (id_user, id_telemetry)
|
||||
);
|
||||
|
||||
comment on table t_telemetry_user is 'Пользователи панели САУБ. Для сообщений.';
|
||||
|
||||
alter table t_telemetry_user
|
||||
owner to postgres;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user