# What does it mean

**URL:** https://community.thunkable.com/t/what-does-it-mean/1549852
**Category:** Questions about Thunkable X
**Created:** [October 7, 2021, 6:21pm UTC](https://community.thunkable.com/t/what-does-it-mean/1549852 "2021-10-07T18:21:43Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![namitnagar](https://avatars.discourse-cdn.com/v4/letter/n/a183cd/32.png) [@namitnagar](https://community.thunkable.com/u/namitnagar)
#### Post date: [October 7, 2021, 6:21pm UTC](https://community.thunkable.com/t/what-does-it-mean/1549852/1 "2021-10-07T18:21:43Z")

</div>

Hello

 ![Screenshot_20211007-235018](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/b/9/b9fb7e62136965888727a05878d4a339c84af8a1.jpeg)  
What does it mean

---

<div class="post-metadata">

### Author: ![Dean\_Artis](https://avatars.discourse-cdn.com/v4/letter/d/a8b319/32.png) [@Dean\_Artis](https://community.thunkable.com/u/Dean_Artis)
#### Post date: [October 7, 2021, 6:34pm UTC](https://community.thunkable.com/t/what-does-it-mean/1549852/2 "2021-10-07T18:34:52Z")

</div>

You should really Google this as it has nothing to do with Thunkable.

---

<div class="post-metadata">

### Author: ![muneer](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/muneer/32/75210_2.png) [@muneer](https://community.thunkable.com/u/muneer)
#### Post date: [October 8, 2021, 9:22am UTC](https://community.thunkable.com/t/what-does-it-mean/1549852/3 "2021-10-08T09:22:43Z")

</div>

It means you have **Database rules** preventing you from accessing the database after 4 days.

You either accept it this way or head on to the **rules tab** for you Firebase database and change it to what fits your requirements.

When you create a new database and choose the **test mode** , Firebase will provide a default rule to access the database for one month only. Something similar to this:

```auto
{
  "rules": {
    ".read": "now < 1622790000000", // 2021-6-4
    ".write": "now < 1622790000000", // 2021-6-4
  }
}

```

When you come close to the expiration data, Firebase will send you notification messages to act on the rules, you can:

- Change the rule for another month or another year
- Create a different rule

or just leave it to expire if you plan to delete the database.

---

<div class="post-metadata">

### Author: ![ioannis](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/ioannis/32/146956_2.png) [@ioannis](https://community.thunkable.com/u/ioannis)
#### Post date: [November 8, 2024, 1:14pm UTC](https://community.thunkable.com/t/what-does-it-mean/1549852/4 "2024-11-08T13:14:55Z")

</div>


