|
123456789101112131415161718192021222324252627282930 |
- <?php
-
- use yii\db\Schema;
- use yii\db\Migration;
-
- class m150317_210256_table_produit extends Migration
- {
- public function up()
- {
-
- $this->createTable('produit', [
- 'id' => 'pk',
- 'nom' => Schema::TYPE_STRING . ' NOT NULL',
- 'description' => Schema::TYPE_STRING,
- 'actif' => Schema::TYPE_BOOLEAN,
- 'illustration' => Schema::TYPE_STRING,
- 'photo' => Schema::TYPE_STRING,
- 'saison' => Schema::TYPE_STRING .' NOT NULL',
- 'prix' => Schema::TYPE_FLOAT,
- 'poids' => Schema::TYPE_FLOAT,
- ]);
-
- }
-
- public function down()
- {
- $this->dropTable('produit');
- }
-
- }
|