Giter Site home page Giter Site logo

Comments (6)

sebastianhaas avatar sebastianhaas commented on May 24, 2024

I can confirm that.

  "properties": {
    "amount": {
      "type": "Number",
      "required": true,
      "postgresql": {
          "dataType": "numeric",
          "dataPrecision": 20,
          "dataScale": 0
        }
    }

results in

CREATE TABLE split
(
  amount numeric NOT NULL,
[...]

from loopback-connector-postgresql.

superkhau avatar superkhau commented on May 24, 2024

Can you provide a link to a test project on GitHub? See https://github.com/strongloop/loopback/wiki/Reporting-issues#bug-report

from loopback-connector-postgresql.

sebastianhaas avatar sebastianhaas commented on May 24, 2024

Thank you for your answer @superkhau.
I set up a test project at https://github.com/sebastianhaas/loopback-sandbox.

You have to have a PostgreSQL server running at localhost:5432 with the following credentials and database:

  "postgres": {
    "host": "localhost",
    "port": "5432",
    "database": "dbname",
    "username": "dbuser",
    "password": "dbpassword",
    "name": "postgres",
    "debug": true,
    "connector": "postgresql"
  }

Afterwards you want to call the automigrate script to create the table.

$ node bin/automigrate.js

The newly created table will be:

CREATE TABLE testmodel
(
  "numericValue" numeric NOT NULL,
  id serial NOT NULL,
  CONSTRAINT testmodel_pkey PRIMARY KEY (id)
)

While it should rather be numeric(19,4) .

I took a quick look into the source, I don't see any code inside the automigrate logic that would actually do this. Maybe in node-postgres though.

from loopback-connector-postgresql.

madianas avatar madianas commented on May 24, 2024

Found a workaround for this, from @raymondfeng:
You can customize the DB type as follows:

{
  "rate": {
    "type": "number",
   "postgresql": {
     "dataType": "NUMERIC(10,2)"
   }
  }

```}

from loopback-connector-postgresql.

alhafoudh avatar alhafoudh commented on May 24, 2024

This does not work @madianas

from loopback-connector-postgresql.

ssh24 avatar ssh24 commented on May 24, 2024

Can confirm this is not an issue anymore in the latest connector. If you specify the postgresql column data type on the property you want to inject it into, this works as expected.

Here is a sample code snippet:

model-definition.json

{
  "name": "Item",
  "base": "PersistedModel",
  "idInjection": true,
  "options": {
    "validateUpsert": true
  },
  "properties": {
    "name": {
      "type": "string"
    },
    "price": {
      "type": "number",
      "postgresql": {
        "dataType": "numeric",
        "dataPrecision": 10,
        "dataScale": 2
      }
    }
  },
  "validations": [],
  "relations": {},
  "acls": [],
  "methods": {}
}

boot-script.js

'use strict';
var util = require('util');
var _ = require('lodash');

module.exports = function(app) {
    var db = app.datasources.postgresqlDs;
    var Item = app.models.Item;

    db.automigrate(function(err) {
        if (err) throw err;
        console.log('\nAutomigrate completed');
    });
};

database output

testdb=# \d Item;
                            Table "public.item"
 Column |     Type      |                     Modifiers
--------+---------------+---------------------------------------------------
 name   | text          |
 price  | numeric(10,2) |
 id     | integer       | not null default nextval('item_id_seq'::regclass)
Indexes:
    "item_pkey" PRIMARY KEY, btree (id)

Closing this issue as a result. Feel free to reopen if needed.

from loopback-connector-postgresql.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.