This repository was archived by the owner on Dec 17, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +5
-78
lines changed
Expand file tree Collapse file tree 5 files changed +5
-78
lines changed Original file line number Diff line number Diff line change 99.history
1010.svn /
1111migrate_working_dir /
12+ /lib /firebase_options.dart
1213
1314# IntelliJ related
1415* .iml
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ create table
1111create table
1212 public .todos (
1313 id text not null ,
14- created_at timestamp with time zone not null default now(),
14+ created_at timestamp with time zone null default now(),
1515 completed_at timestamp with time zone null ,
1616 description text not null ,
1717 completed boolean not null default false,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -192,9 +192,9 @@ delete (data) async {
192192 );
193193
194194 if (response.statusCode == 200 ) {
195- log.info ('PUT request successful: ${response .body }' );
195+ log.info ('DELETE request successful: ${response .body }' );
196196 } else {
197- log.severe ('PUT request failed with status: ${response .statusCode }' );
197+ log.severe ('DELETE request failed with status: ${response .statusCode }' );
198198 }
199199 } catch (e) {
200200 log.severe ('Exception occurred: $e ' );
Original file line number Diff line number Diff line change @@ -193,7 +193,7 @@ packages:
193193 source: hosted
194194 version: "1.1.0"
195195 http:
196- dependency: transitive
196+ dependency: "direct main"
197197 description:
198198 name: http
199199 sha256: "759d1a329847dd0f39226c688d3e06a6b8679668e350e2891a6474f8b4bb8525"
You can’t perform that action at this time.
0 commit comments