Giter Site home page Giter Site logo

Using ENUM type about sqlboiler HOT 3 CLOSED

volatiletech avatar volatiletech commented on April 28, 2024
Using ENUM type

from sqlboiler.

Comments (3)

aarondl avatar aarondl commented on April 28, 2024

Hey there,

So first off let me explain that we don't have proper enum support currently. The next thing to say is that you can still use sqlboiler and enums as strings, since this is how the driver works internally anyway, the only problem is that you can't run the compatibility tests since the randomize package doesn't understand the valid values for your enum type.

What we're going to do is the following:

  • Support enum types in the bdb/drivers package by encoding enums like so: enum('val1','val2')
  • Generate constants (if all enum values conform to a Go identifier-safe regex) in the model that:
    • For postgresql will look like: DatatypeValue (eg. WorkdayMonday)
    • For mysql will look like: TablenameColumnnameValue (eg. EventDayMonday)
    • Will be camelcased if and only if the value is all lowercase in the database, otherwise casing is untouched
  • Support enum types in the randomize package by choosing a random value from the above encoding

If this sounds okay to you then we can start work on this.

One more thing, the TestUpsert is failing in a way I don't expect, is it possible that you can run that test in isolation along with debug mode? We may have a bug here.

go test -v -run 'TestUpsert/Events' ./models -test.debug

from sqlboiler.

aarondl avatar aarondl commented on April 28, 2024

https://github.com/vattle/sqlboiler/releases/tag/v2.1.0

from sqlboiler.

aarondl avatar aarondl commented on April 28, 2024

Check docs for more information on this new feature.

from sqlboiler.

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.