Table name prefixes for each bundle

0 votes
asked Jul 12, 2017 in General Questions by dj_windless (120 points)

Is it possible to create a table prefix for each bundle?
So BundleName is "FooBundle" and Entity name is "Bar" and skipper will generate the table name like "foo_bar".

Is there a way? I can't find an option. I am using the Mac Version.

1 Answer

0 votes
answered Jul 12, 2017 by ludek.vodicka Skipper developer (140,450 points)

Unfortunately, this is not possible. Skipper offers only options offered by each ORM. So there is, for example, table_prefix but not Entity prefix.

But you can specify namespace for each bundle, so you will have Foo\Bar (for Doctrine2 for example)

...