Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cria funcionalidade que permite adicionar goleiros #25

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
247 changes: 247 additions & 0 deletions .idea/androidTestResultsUserPreferences.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion .idea/deploymentTargetDropDown.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"formatVersion": 1,
"database": {
"version": 1,
"identityHash": "5a69727f6e08bb3c14f33b339c57fe18",
"identityHash": "7f558be24c60997e8269ee8e2a802965",
"entities": [
{
"tableName": "PlayerEntity",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`name` TEXT NOT NULL, `level` INTEGER NOT NULL, PRIMARY KEY(`name`))",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`name` TEXT NOT NULL, `level` INTEGER NOT NULL, `is_goal_keeper` INTEGER, PRIMARY KEY(`name`))",
"fields": [
{
"fieldPath": "name",
Expand All @@ -19,6 +19,12 @@
"columnName": "level",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "isGoalKeeper",
"columnName": "is_goal_keeper",
"affinity": "INTEGER",
"notNull": false
}
],
"primaryKey": {
Expand All @@ -34,7 +40,7 @@
"views": [],
"setupQueries": [
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '5a69727f6e08bb3c14f33b339c57fe18')"
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '7f558be24c60997e8269ee8e2a802965')"
]
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"formatVersion": 1,
"database": {
"version": 2,
"identityHash": "be2de52b07ed48f8f8942eed5268e9d4",
"entities": [
{
"tableName": "PlayerEntity",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`name` TEXT NOT NULL, `level` INTEGER NOT NULL, `is_goal_keeper` INTEGER NOT NULL, PRIMARY KEY(`name`))",
"fields": [
{
"fieldPath": "name",
"columnName": "name",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "level",
"columnName": "level",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "isGoalKeeper",
"columnName": "is_goal_keeper",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"name"
]
},
"indices": [],
"foreignKeys": []
}
],
"views": [],
"setupQueries": [
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'be2de52b07ed48f8f8942eed5268e9d4')"
]
}
}
Loading
Loading