Nowe posty

xx Problem ze sterownikami. (5)
2024-04-13, 21:25:16
xx Instalacja xfce4 (2)
2024-04-13, 16:20:17
xx Serie kompilacji bez instalacji dla “emerge” w Gentoo (2)
2024-04-08, 18:40:04
xx Plasma 6 w Neonie ssie trochę mniej ... (17)
2024-04-05, 10:03:46
xx Problem z Linux Lite po instalacji (3)
2024-04-03, 14:23:40
xx Jak właczyć num locka przy starcie systemu debian 12? (12)
2024-04-02, 17:43:54
xx Brak dźwieku w systemie. (5)
2024-04-02, 16:13:41
xx Dystrybucja pod HP Omen (7)
2024-03-29, 11:33:05
xx [Poradnik] Wyszukiwanie Sterowników (2)
2024-03-27, 21:08:23
xx Ile pingwinów? (1)
2024-03-27, 08:59:24

Autor Wątek: ForeignTable: Symfony - błąd  (Przeczytany 3757 razy)

  • Gość
ForeignTable: Symfony - błąd
« dnia: 2010-12-04, 22:14:01 »
Mam problem: robię według podręcznika symfony 1.2 doctrine, pomimo to, parser yaml narzeka, że nie trawi foreignTable?

news:
       actAs: { Timestampable: ~ }
       columns:
                title:         { type: string(255), notnull: true, unique: false }
                description:   { type: string(65536), notnull: true, unique: false }
                author_id:     { type: integer, notnull: true, unique: false, foreignTable: user, foreignReference: id }
                creation_date: { type: datetime, notnull: true, unique: false }

user:
        actAs: { Timestampable: ~ }
        columns:
                name:          { type: string(255), notnull: true, unique: false }
                last_name:     { type: string(1024), notnull: true, unique: false }
                email:         { type: string(255), notnull: false, unique: true }
                creation_date: { type: date, notnull: true, unique: false }
Co robię źle?