Nuri

Results 41 comments of Nuri

@gedw99 Check this out... Just released: https://github.com/timshannon/badgerhold

G'day right back atcha! I hear you. I too am a C# developer exploring Go like you, so maybe that's why it looks wrong to me. I keep hearing the...

Not working for me. The `schema_migrations` table gets created so I know there is no issue with DB access, but the table is empty and the 2 SQL files that...

Can anyone help me with this, it's very frustrating. Why could I be getting empty SQL files with the create command? All of the following have the same result. Both...

I'm expecting SQL create statements of the initial state of the database. I'm pretty sure that's what the fork github.com/gemnasium/migrate did for me. What am I missing about the point...

Sure. With github.com/gemnasium/migrate my `create` command created 2 SQL files: *20170106065339_initialdb.up.sql* containing: ```SQL CREATE EXTENSION IF NOT EXISTS hstore; CREATE SEQUENCE profiles_profile_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE...

So what am I missing about the point of the empty SQL files? :) Seriously, what is the purpose of these files?

Ok, thanks for the explanation.

Sorry to bother you again but I just cannot get this to work. Step by step instructions in https://github.com/mattes/migrate/tree/master/cli would help a lot for newbies. I create a new migration:...

Thanks guys. Do I have to manually change the content of every migration file or only the first up/down pair? If I have have to keep track of every change...