diff --git a/app/Models/ServerVariables.php b/app/Models/ServerVariables.php
new file mode 100644
index 00000000..611d5793
--- /dev/null
+++ b/app/Models/ServerVariables.php
@@ -0,0 +1,17 @@
+<?php
+
+namespace Pterodactyl\Models;
+
+use Illuminate\Database\Eloquent\Model;
+
+class ServerVariables extends Model
+{
+
+    /**
+     * The table associated with the model.
+     *
+     * @var string
+     */
+    protected $table = 'server_variables';
+
+}
diff --git a/app/Models/Service.php b/app/Models/Service.php
new file mode 100644
index 00000000..fcc80fee
--- /dev/null
+++ b/app/Models/Service.php
@@ -0,0 +1,17 @@
+<?php
+
+namespace Pterodactyl\Models;
+
+use Illuminate\Database\Eloquent\Model;
+
+class Service extends Model
+{
+
+    /**
+     * The table associated with the model.
+     *
+     * @var string
+     */
+    protected $table = 'services';
+    
+}
diff --git a/app/Models/ServiceOptions.php b/app/Models/ServiceOptions.php
new file mode 100644
index 00000000..662cd0dd
--- /dev/null
+++ b/app/Models/ServiceOptions.php
@@ -0,0 +1,17 @@
+<?php
+
+namespace Pterodactyl\Models;
+
+use Illuminate\Database\Eloquent\Model;
+
+class ServiceOptions extends Model
+{
+
+    /**
+     * The table associated with the model.
+     *
+     * @var string
+     */
+    protected $table = 'service_options';
+
+}
diff --git a/app/Models/ServiceVariables.php b/app/Models/ServiceVariables.php
new file mode 100644
index 00000000..1163007e
--- /dev/null
+++ b/app/Models/ServiceVariables.php
@@ -0,0 +1,17 @@
+<?php
+
+namespace Pterodactyl\Models;
+
+use Illuminate\Database\Eloquent\Model;
+
+class ServiceVariables extends Model
+{
+
+    /**
+     * The table associated with the model.
+     *
+     * @var string
+     */
+    protected $table = 'service_variables';
+
+}