aboutsummaryrefslogtreecommitdiff
path: root/database/migrations/2021_08_02_000000_create_rates_table.php
diff options
context:
space:
mode:
Diffstat (limited to 'database/migrations/2021_08_02_000000_create_rates_table.php')
-rw-r--r--database/migrations/2021_08_02_000000_create_rates_table.php13
1 files changed, 0 insertions, 13 deletions
diff --git a/database/migrations/2021_08_02_000000_create_rates_table.php b/database/migrations/2021_08_02_000000_create_rates_table.php
index c6925d0..0aef61d 100644
--- a/database/migrations/2021_08_02_000000_create_rates_table.php
+++ b/database/migrations/2021_08_02_000000_create_rates_table.php
@@ -37,19 +37,6 @@ class CreateRatesTable extends Migration
'description' => 'Created by Satoshi'
)
);
- DB::table('currency')->insert(
- array(
- 'name' => 'US Dollar',
- 'unit' => '$',
- 'description' => 'Destroyed by Breton Woods'
- )
- );
- DB::table('rates')->insert(
- array(
- 'currency_id' => 1,
- 'relative_id' => 2,
- 'value' => 100000.00
- ));
}
/**