Giter Club home page Giter Club logo

Comments (5)

tanner0101 avatar tanner0101 commented on May 14, 2024 4

@photovirus yes there are a couple of ways:

1: Pass a .custom constraint containing a SQL String to the schema builder.

private struct TestMigration: FluentKit.Migration {
    func prepare(on database: Database) -> EventLoopFuture<Void> {
        database.schema("test")
            .field("id", .uuid, .identifier(auto: false))
            .field("foo", .int)
            .field("bar", .string)
            .constraint(.custom("INDEX my_index (foo, bar)"))
            .create()
    }

    func revert(on database: Database) -> EventLoopFuture<Void> {
        database.schema("test").delete()
    }
}

Note: The API above works on the gm branch but has not yet been released. On master, you must append the constraint manually:

var builder = database.schema("test")
    .field("id", .uuid, .identifier(auto: false))
    .field("foo", .int)
    .field("bar", .string)
builder.schema.createConstraints.append(.custom("INDEX my_index (foo, bar)"))
return builder.create()

2: Cast the database as SQLDatabase then run a raw query.

struct AddMyIndexMigration: FluentKit.Migration {
    func prepare(on database: Database) -> EventLoopFuture<Void> {
        (database as! SQLDatabase).raw("CREATE INDEX my_index ON test (foo, bar);")
    }

    func revert(on database: Database) -> EventLoopFuture<Void> {
        (database as! SQLDatabase).raw("DROP INDEX my_index;")
    }
}

from fluent-kit.

tanner0101 avatar tanner0101 commented on May 14, 2024 3

SchemaBuilder currently supports unique indexes via unique(on:). Still need support for non-unique indexes.

from fluent-kit.

photovirus avatar photovirus commented on May 14, 2024

SchemaBuilder currently supports unique indexes via unique(on:). Still need support for non-unique indexes.

@tanner0101 is there any way to add non-unique indexes in a migration with latest FluentKit and Vapor 4.0?

from fluent-kit.

photovirus avatar photovirus commented on May 14, 2024

This is extremely valuable, thank you so much! 😊

from fluent-kit.

valeriomazzeo avatar valeriomazzeo commented on May 14, 2024

I ended up porting my IndexBuilder to Fluent 4.

Although, I had to hammer it in a custom query action. Using the schema constraints to define an index didn't feel right, and a custom schema action is not available. It still looks to me there's some value in having some sort of IndexBuilder and an additional method in the Database protocol to go with it.

from fluent-kit.

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.