Skip to content

Commit

Permalink
removed empty newlines in schema.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
thatchinkumar2005 committed Dec 24, 2024
1 parent 883f982 commit f6a7d20
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ diesel::table! {
diesel::table! {
attack_type (id) {
id -> Int4,

att_type -> Varchar,
attack_radius -> Int4,
attack_damage -> Int4,
Expand All @@ -35,7 +34,6 @@ diesel::table! {
amt_of_emps -> Int4,
level -> Int4,
cost -> Int4,

name -> Varchar,
prop_id -> Int4,
}
Expand Down Expand Up @@ -69,7 +67,6 @@ diesel::table! {
diesel::table! {
building_type (id) {
id -> Int4,

name -> Varchar,
width -> Int4,
height -> Int4,
Expand All @@ -88,7 +85,6 @@ diesel::table! {
damage -> Int4,
level -> Int4,
cost -> Int4,

name -> Varchar,
prop_id -> Int4,
}
Expand All @@ -97,12 +93,10 @@ diesel::table! {
diesel::table! {
emp_type (id) {
id -> Int4,

att_type -> Varchar,
attack_radius -> Int4,
attack_damage -> Int4,
cost -> Int4,

name -> Varchar,
level -> Int4,
}
Expand Down Expand Up @@ -168,7 +162,6 @@ diesel::table! {
damage -> Int4,
level -> Int4,
cost -> Int4,

name -> Varchar,
prop_id -> Int4,
}
Expand Down Expand Up @@ -204,11 +197,8 @@ diesel::table! {
diesel::table! {
user (id) {
id -> Int4,

name -> Varchar,

email -> Varchar,

username -> Varchar,
is_pragyan -> Bool,
attacks_won -> Int4,
Expand Down

0 comments on commit f6a7d20

Please sign in to comment.