Roman

Results 5 issues of Roman

There should be a possibility to rename tables in migrations, like with Postgres or Mysql: `rename table(:old), to: table(:new)`

Since Mnesia is not limited by types of data it stores, would be good idea to provide more basic types like `atom`, `pid`, `tuple` etc. If I understand it correctly,...

enhancement

That would be super awesome to get process of setting up SpaceVim for Elixir development documented.

in progress
IDE

From project to project, I keep bringing my tiny function of making generated data unique: ```elixir def make_unique(string) do "#{string}#{System.unique_integer([:positive, :monotonic])}" end make_unique(Faker.Pokemon.name()) ``` While it's really tiny, I thought...

HTML::anchor() will allow use URI instead of relative path (if I will pass 'user/welcome' as $url while my actual url is site.com/some/controller/some/action - the link will be site.com/some/controller/some/action/user/welcome instead of...