Ignore:
Timestamp:
07/27/20 17:10:07 (4 years ago)
Author:
DimitarSlezenkovski <dslezenkovski@…>
Branches:
master
Children:
ef1219a
Parents:
4b342bb
Message:

Add Route Attribute

File:
1 edited

Legend:

Unmodified
Added
Removed
  • FarmatikoData/Migrations/20200722131856_Initial migration.cs

    r4b342bb rd2e69be  
    1515                    Id = table.Column<int>(nullable: false)
    1616                        .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
    17                     CreatedOn = table.Column<DateTime>(nullable: false),
    18                     DeletedOn = table.Column<DateTime>(nullable: false),
     17                    CreatedOn = table.Column<DateTime>(nullable: false, defaultValueSql: "now()"),
     18                    DeletedOn = table.Column<DateTime>(nullable: true),
    1919                    Name = table.Column<string>(nullable: false),
    2020                    Municipality = table.Column<string>(nullable: false),
     
    3535                    Id = table.Column<int>(nullable: false)
    3636                        .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
    37                     CreatedOn = table.Column<DateTime>(nullable: false),
    38                     DeletedOn = table.Column<DateTime>(nullable: false),
     37                    CreatedOn = table.Column<DateTime>(nullable: false, defaultValueSql: "now()"),
     38                    DeletedOn = table.Column<DateTime>(nullable: true),
    3939                    Name = table.Column<string>(nullable: true),
    4040                    TotalMK = table.Column<int>(nullable: false),
     
    5757                    Id = table.Column<int>(nullable: false)
    5858                        .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
    59                     CreatedOn = table.Column<DateTime>(nullable: false),
    60                     DeletedOn = table.Column<DateTime>(nullable: false),
     59                    CreatedOn = table.Column<DateTime>(nullable: false, defaultValueSql: "now()"),
     60                    DeletedOn = table.Column<DateTime>(nullable: true),
    6161                    Name = table.Column<string>(nullable: false),
    6262                    Branch = table.Column<string>(nullable: false),
     
    8181                    Id = table.Column<int>(nullable: false)
    8282                        .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
    83                     CreatedOn = table.Column<DateTime>(nullable: false),
    84                     DeletedOn = table.Column<DateTime>(nullable: false),
     83                    CreatedOn = table.Column<DateTime>(nullable: false, defaultValueSql: "now()"),
     84                    DeletedOn = table.Column<DateTime>(nullable: true),
    8585                    Name = table.Column<string>(nullable: true),
    8686                    Strength = table.Column<string>(nullable: true),
     
    103103                    Id = table.Column<int>(nullable: false)
    104104                        .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
    105                     CreatedOn = table.Column<DateTime>(nullable: false),
    106                     DeletedOn = table.Column<DateTime>(nullable: false),
     105                    CreatedOn = table.Column<DateTime>(nullable: false, defaultValueSql: "now()"),
     106                    DeletedOn = table.Column<DateTime>(nullable: true),
    107107                    PharmacyMedicinesId = table.Column<int>(nullable: true),
    108108                    PharmacyId = table.Column<int>(nullable: true),
     
    122122                    Id = table.Column<int>(nullable: false)
    123123                        .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
    124                     CreatedOn = table.Column<DateTime>(nullable: false),
    125                     DeletedOn = table.Column<DateTime>(nullable: false),
     124                    CreatedOn = table.Column<DateTime>(nullable: false, defaultValueSql: "now()"),
     125                    DeletedOn = table.Column<DateTime>(nullable: true),
    126126                    MedicinesId = table.Column<int>(nullable: true),
    127127                    HasMedicine = table.Column<bool>(nullable: false),
     
    151151                    Id = table.Column<int>(nullable: false)
    152152                        .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
    153                     CreatedOn = table.Column<DateTime>(nullable: false),
    154                     DeletedOn = table.Column<DateTime>(nullable: false),
     153                    CreatedOn = table.Column<DateTime>(nullable: false, defaultValueSql: "now()"),
     154                    DeletedOn = table.Column<DateTime>(nullable: true),
    155155                    Name = table.Column<string>(nullable: true),
    156156                    Location = table.Column<string>(nullable: true),
Note: See TracChangeset for help on using the changeset viewer.