| 12345678910111213141516171819202122232425262728293031 |
- <?php
- use yii\db\Migration;
- /**
- * Class m220310_234138_inicio
- */
- class m220310_234138_inicio extends Migration {
- /**
- * {@inheritdoc}
- */
- public function safeUp() {
- $this->createTable('Usuario', [
- "id" => $this->primaryKey(),
- "uid" => $this->string(50)->unique(),
- "correo" => $this->string(100)->notNull(),
- "nombre" => $this->string(100)->notNull(),
- ]);
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown() {
- $this->dropTable('Usuario');
- }
- }
|