Coder Social home page Coder Social logo

Comments (5)

jtreuting avatar jtreuting commented on May 22, 2024

No it doesn't currently support that. The only schema support currently is the ability to work with tables in specific schemas instead of the default dbo.

But that seems like something that could be added pretty easily. Feel free to fork the project and take a crack at it if you wish.

from fluentmigrator.

kberridge avatar kberridge commented on May 22, 2024

What do you think the fluent interface should be for this?

Rename.Table( "tbl" ).InSchema( "a" ).To( "tbl" ).InSchema( "b" );
-or-
Alter.Table( "tbl" ).InSchema( "a" ).ToSchema( "b" );
-or-
Transfer.Table( "tbl" ).InSchema( "a" ).ToSchema( "b" );
-or-
something else?

from fluentmigrator.

jtreuting avatar jtreuting commented on May 22, 2024

My initial thought is that we would have something like the following:

Create.Schema("schema");
Delete.Schema("schema");
And there is no rename so we don't need that.

Alter is a little more difficult in my mind because you are really altering a table and assigning it a new schema, not altering the schema itself. So I don't think Alter.Schema makes the most sense.

I've added a new Alter.Table() syntax that allows for both AddColumn() and AlterColumn() at https://github.com/jtreuting/fluentmigrator/tree/createcolumn that isn't in the main code yet. But maybe this falls under that syntax.

So I think I like the Alter.Table("tbl").InSchema("a").ToSchema("b").

I'll probably push my Alter.Table changes later today or tonight to the master codebase so then you can grab that and go from there if you want.

from fluentmigrator.

jtreuting avatar jtreuting commented on May 22, 2024

Had some time right now so just comitted the Alter.Table syntax into the master code, so you can fork that and add the changes for Schema if you'd like.

from fluentmigrator.

jtreuting avatar jtreuting commented on May 22, 2024

This has been merged into the main branch, thanks.

from fluentmigrator.

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.