about summary refs log tree commit diff
path: root/db/migrate
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20220115164423_create_players.rb13
-rw-r--r--db/migrate/20220115164820_create_machines.rb12
2 files changed, 25 insertions, 0 deletions
diff --git a/db/migrate/20220115164423_create_players.rb b/db/migrate/20220115164423_create_players.rb
new file mode 100644
index 0000000..b12249a
--- /dev/null
+++ b/db/migrate/20220115164423_create_players.rb
@@ -0,0 +1,13 @@
+# frozen_string_literal: true
+
+class CreatePlayers < ActiveRecord::Migration[7.0]
+  def change
+    create_table :players do |t|
+      t.string :name
+      t.boolean :paid
+      t.integer :strikes
+
+      t.timestamps
+    end
+  end
+end
diff --git a/db/migrate/20220115164820_create_machines.rb b/db/migrate/20220115164820_create_machines.rb
new file mode 100644
index 0000000..6e889fc
--- /dev/null
+++ b/db/migrate/20220115164820_create_machines.rb
@@ -0,0 +1,12 @@
+# frozen_string_literal: true
+
+class CreateMachines < ActiveRecord::Migration[7.0]
+  def change
+    create_table :machines do |t|
+      t.string :name
+      t.string :edition
+
+      t.timestamps
+    end
+  end
+end