0 votes

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.

in General Questions by (120 points)

1 Answer

0 votes

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)

by Skipper developer (141k points)