diff --git a/app/resources/database/migrations/20250506164824_create_toku_customers.php b/app/resources/database/migrations/20250506164824_create_toku_customers.php new file mode 100644 index 0000000..8176743 --- /dev/null +++ b/app/resources/database/migrations/20250506164824_create_toku_customers.php @@ -0,0 +1,28 @@ +table('toku_customers') + ->addColumn('rut', 'string', ['length' => 9]) + ->addColumn('toku_id', 'string', ['length' => 255]) + ->addTimestamps() + ->create(); + } +} diff --git a/app/resources/database/migrations/20250506212422_create_toku_subscriptions.php b/app/resources/database/migrations/20250506212422_create_toku_subscriptions.php new file mode 100644 index 0000000..97346c7 --- /dev/null +++ b/app/resources/database/migrations/20250506212422_create_toku_subscriptions.php @@ -0,0 +1,28 @@ +table('toku_subscriptions') + ->addColumn('venta_id', 'integer', ['signed' => false]) + ->addColumn('toku_id', 'string', ['length' => 255]) + ->addTimestamps() + ->create(); + } +} diff --git a/app/resources/database/migrations/20250506213859_create_toku_invoices.php b/app/resources/database/migrations/20250506213859_create_toku_invoices.php new file mode 100644 index 0000000..e1c3314 --- /dev/null +++ b/app/resources/database/migrations/20250506213859_create_toku_invoices.php @@ -0,0 +1,28 @@ +table('toku_invoices') + ->addColumn('cuota_id', 'integer', ['signed' => false]) + ->addColumn('toku_id', 'string', ['length' => 255]) + ->addTimestamps() + ->create(); + } +}